Skip to content

Commit

Permalink
refactor: reformat codes
Browse files Browse the repository at this point in the history
  • Loading branch information
gracefulBrown committed Jun 9, 2022
1 parent 1fa667b commit fbc01a8
Showing 1 changed file with 6 additions and 7 deletions.
Original file line number Diff line number Diff line change
@@ -1,10 +1,9 @@
create table studylog_temp_tag
(
id bigint not null auto_increment,
tag_id bigint,
studylog_temp_id bigint not null,
primary key (id)
) engine=InnoDB;
CREATE TABLE studylog_temp_tag(
id BIGINT NOT NULL AUTO_INCREMENT,
tag_id BIGINT NOT NULL,
studylog_temp_id BIGINT NOT NULL,
PRIMARY KEY (id)
) ENGINE=InnoDB;

alter table studylog_temp_tag
add constraint FK_STUDYLOG_TEMP_TAG_TAG
Expand Down

0 comments on commit fbc01a8

Please sign in to comment.