Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
Projets publics
Ravada-Mirror
Commits
be4b6891
Commit
be4b6891
authored
Mar 08, 2021
by
Roberto P. Rubio
Browse files
Change default on sql
parent
e46531cf
Changes
2
Hide whitespace changes
Inline
Side-by-side
sql/mysql/users.sql
View file @
be4b6891
...
...
@@ -2,7 +2,7 @@ CREATE TABLE `users` (
`id`
int
(
11
)
NOT
NULL
AUTO_INCREMENT
,
`name`
char
(
255
)
NOT
NULL
,
`password`
char
(
255
)
DEFAULT
NULL
,
`change_password`
integer
DEFAULT
1
,
`change_password`
integer
DEFAULT
0
,
`is_admin`
integer
DEFAULT
0
,
`is_temporary`
integer
DEFAULT
0
,
`is_external`
integer
DEFAULT
0
,
...
...
sql/sqlite/users.sql
View file @
be4b6891
...
...
@@ -2,7 +2,7 @@ CREATE TABLE `users` (
`id`
integer
NOT
NULL
PRIMARY
KEY
AUTOINCREMENT
,
`name`
char
(
255
)
NOT
NULL
,
`password`
char
(
255
)
DEFAULT
NULL
,
`change_password`
integer
DEFAULT
1
,
`change_password`
integer
DEFAULT
0
,
`is_admin`
integer
DEFAULT
0
,
`is_temporary`
integer
DEFAULT
0
,
`is_external`
integer
DEFAULT
0
...
...
Write
Preview
Supports
Markdown
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