remove forward table from db scripts
This commit is contained in:
parent
37b0852fdb
commit
dd098fee77
|
@ -1,4 +1,3 @@
|
|||
|
||||
[avatar]
|
||||
profile_id = 129
|
||||
original = 17
|
||||
|
@ -196,15 +195,6 @@ id = K
|
|||
service = K
|
||||
uri = U
|
||||
|
||||
[forward]
|
||||
profile_id = 129
|
||||
notice_id = 129
|
||||
created = 142
|
||||
|
||||
[forward__keys]
|
||||
profile_id = K
|
||||
notice_id = K
|
||||
|
||||
[group_alias]
|
||||
alias = 130
|
||||
group_id = 129
|
||||
|
|
|
@ -82,15 +82,3 @@ create table login_token (
|
|||
|
||||
constraint primary key (user_id)
|
||||
) ENGINE=InnoDB CHARACTER SET utf8 COLLATE utf8_bin;
|
||||
|
||||
create table forward (
|
||||
|
||||
profile_id integer not null comment 'profile who forwarded the notice' references profile (id),
|
||||
notice_id integer not null comment 'notice they forwarded' references notice (id),
|
||||
|
||||
created datetime not null comment 'date this record was created',
|
||||
|
||||
constraint primary key (profile_id, notice_id)
|
||||
|
||||
) ENGINE=InnoDB CHARACTER SET utf8 COLLATE utf8_bin;
|
||||
|
||||
|
|
|
@ -585,14 +585,3 @@ create table login_token (
|
|||
constraint primary key (user_id)
|
||||
) ENGINE=InnoDB CHARACTER SET utf8 COLLATE utf8_bin;
|
||||
|
||||
create table forward (
|
||||
|
||||
profile_id integer not null comment 'profile who forwarded the notice' references profile (id),
|
||||
notice_id integer not null comment 'notice they forwarded' references notice (id),
|
||||
|
||||
created datetime not null comment 'date this record was created',
|
||||
|
||||
constraint primary key (profile_id, notice_id)
|
||||
|
||||
) ENGINE=InnoDB CHARACTER SET utf8 COLLATE utf8_bin;
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user