Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
mahara
mahara
Commits
f1b538b2
Commit
f1b538b2
authored
Oct 17, 2006
by
Nigel McNie
Committed by
Nigel McNie
Oct 17, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added the user table. At the moment its only fields are for the
auth_internal plugin.
parent
4a3b76b1
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
16 additions
and
2 deletions
+16
-2
htdocs/lib/db/install.xml
htdocs/lib/db/install.xml
+16
-2
No files found.
htdocs/lib/db/install.xml
View file @
f1b538b2
...
...
@@ -23,7 +23,7 @@
<KEY
NAME=
"primary"
TYPE=
"primary"
FIELDS=
"field"
COMMENT=
"Primary key for config"
/>
</KEYS>
</TABLE>
<TABLE
NAME=
"config_artefact"
COMMENT=
"Mahara artefact plugins configuration variables"
PREVIOUS=
"config"
>
<TABLE
NAME=
"config_artefact"
COMMENT=
"Mahara artefact plugins configuration variables"
NEXT=
"usr"
PREVIOUS=
"config"
>
<FIELDS>
<FIELD
NAME=
"plugin"
TYPE=
"char"
LENGTH=
"100"
NOTNULL=
"true"
SEQUENCE=
"false"
ENUM=
"false"
NEXT=
"field"
/>
<FIELD
NAME=
"field"
TYPE=
"char"
LENGTH=
"100"
NOTNULL=
"true"
SEQUENCE=
"false"
ENUM=
"false"
PREVIOUS=
"plugin"
NEXT=
"value"
/>
...
...
@@ -34,5 +34,19 @@
<KEY
NAME=
"pluginfk"
TYPE=
"foreign"
FIELDS=
"plugin"
REFTABLE=
"installed_artefact"
REFFIELDS=
"name"
PREVIOUS=
"primary"
/>
</KEYS>
</TABLE>
<TABLE
NAME=
"usr"
COMMENT=
"Basic user information for all system users"
PREVIOUS=
"config_artefact"
>
<FIELDS>
<FIELD
NAME=
"id"
TYPE=
"int"
LENGTH=
"10"
NOTNULL=
"true"
UNSIGNED=
"false"
SEQUENCE=
"true"
ENUM=
"false"
NEXT=
"username"
/>
<FIELD
NAME=
"username"
TYPE=
"char"
LENGTH=
"100"
NOTNULL=
"true"
SEQUENCE=
"false"
ENUM=
"false"
PREVIOUS=
"id"
NEXT=
"password"
/>
<FIELD
NAME=
"password"
TYPE=
"char"
LENGTH=
"40"
NOTNULL=
"true"
SEQUENCE=
"false"
ENUM=
"false"
PREVIOUS=
"username"
NEXT=
"salt"
/>
<FIELD
NAME=
"salt"
TYPE=
"char"
LENGTH=
"8"
NOTNULL=
"true"
SEQUENCE=
"false"
ENUM=
"false"
PREVIOUS=
"password"
/>
</FIELDS>
<KEYS>
<KEY
NAME=
"primary"
TYPE=
"primary"
FIELDS=
"id"
COMMENT=
"Primary key for usr"
/>
</KEYS>
<INDEXES>
<INDEX
NAME=
"usernameuk"
UNIQUE=
"true"
FIELDS=
"LOWER(username)"
/>
</INDEXES>
</TABLE>
</TABLES>
</XMLDB>
\ No newline at end of file
</XMLDB>
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment