Projekt

Obecné

Profil

Stáhnout (245 Bajtů) Statistiky
| Větev: | Tag: | Revize:
1 c9d1085d Petr Urban
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
);