From 4edb2a7d8b02df5ceda10fcbe30b2ad4cf9e4a12 Mon Sep 17 00:00:00 2001 From: "m.fu" Date: Mon, 16 Mar 2009 20:05:06 +0000 Subject: Initial release, drupal 6.x --- HTPasswdSync.install | 42 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 42 insertions(+) create mode 100644 HTPasswdSync.install (limited to 'HTPasswdSync.install') diff --git a/HTPasswdSync.install b/HTPasswdSync.install new file mode 100644 index 0000000..6689436 --- /dev/null +++ b/HTPasswdSync.install @@ -0,0 +1,42 @@ + array( + 'username' => array( + 'description' => 'The {users}.username.', + 'type' => 'varchar', + 'length' => 33, + 'not null' => TRUE, + 'default' => 0, + ), + 'passwd' => array( + 'description' => 'The crypted (crypt) password.', + 'type' => 'varchar', + 'length' => 33, + 'not null' => TRUE, + 'default' => '', + ), + ), + 'primary key' => array('username'), + ); + return $schema; +} -- cgit v1.2.3