Skip to content

Commit

Permalink
fix: update schema with new hibernated column
Browse files Browse the repository at this point in the history
  • Loading branch information
wa0x6e committed Nov 1, 2023
1 parent e965c6a commit 1f51864
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions test/schema.sql
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,14 @@ CREATE TABLE spaces (
verified INT NOT NULL DEFAULT '0',
deleted INT NOT NULL DEFAULT '0',
flagged INT NOT NULL DEFAULT '0',
hibernated INT NOT NULL DEFAULT '0',
created_at BIGINT NOT NULL,
updated_at BIGINT NOT NULL,
PRIMARY KEY (id),
INDEX name (name),
INDEX verified (verified),
INDEX flagged (flagged),
INDEX hibernated (hibernated),
INDEX deleted (deleted),
INDEX created_at (created_at),
INDEX updated_at (updated_at)
Expand Down

0 comments on commit 1f51864

Please sign in to comment.