spade-fork/db/spawn/db.spawn_createUsersTable.sql @ 7d5de443
1 |
if not exists (select * from sysobjects where name='users' and xtype='U') |
---|---|
2 |
create table users( |
3 |
id int identity(1,1), |
4 |
email nvarchar(255) not null, |
5 |
name nvarchar(255) not null, |
6 |
password varchar(255) not null, |
7 |
PRIMARY KEY(id) |
8 |
);
|