Revize c1016fab
Přidáno uživatelem Petr Urban před více než 1 rok
db/spawn/db.spawn_createUsersTable.sql | ||
---|---|---|
1 | 1 |
if not exists (select * from sysobjects where name='users' and xtype='U') |
2 | 2 |
create table users( |
3 | 3 |
id int identity(1,1), |
4 |
email nvarchar(255) not null,
|
|
4 |
email nvarchar(255) null, |
|
5 | 5 |
name nvarchar(255) not null, |
6 |
password varchar(255) not null,
|
|
6 |
password varchar(255) null, |
|
7 | 7 |
PRIMARY KEY(id) |
8 | 8 |
); |
Také k dispozici: Unified diff
SSO automatic registration