2019-09-29 04:56:39 +00:00
|
|
|
CREATE TABLE [users_groups_promotions] (
|
2022-02-21 03:16:15 +00:00
|
|
|
[pid] int not null IDENTITY,
|
|
|
|
[from_gid] int not null,
|
|
|
|
[to_gid] int not null,
|
|
|
|
[two_way] bit DEFAULT 0 not null,
|
|
|
|
[level] int not null,
|
|
|
|
[posts] int DEFAULT 0 not null,
|
|
|
|
[minTime] int not null,
|
|
|
|
[registeredFor] int DEFAULT 0 not null,
|
|
|
|
primary key([pid])
|
2019-09-29 04:56:39 +00:00
|
|
|
);
|