2019-09-29 04:56:39 +00:00
|
|
|
CREATE TABLE [users_groups_promotions] (
|
|
|
|
[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,
|
2019-10-06 22:20:37 +00:00
|
|
|
[posts] int DEFAULT 0 not null,
|
2019-09-29 04:56:39 +00:00
|
|
|
[minTime] int not null,
|
2020-02-09 10:00:08 +00:00
|
|
|
[registeredFor] int DEFAULT 0 not null,
|
2019-09-29 04:56:39 +00:00
|
|
|
primary key([pid])
|
|
|
|
);
|