Removing unique constraint from username column
This commit is contained in:
parent
9ef3009cc2
commit
4d56881d12
1 changed files with 1 additions and 1 deletions
|
|
@ -1,7 +1,7 @@
|
|||
export const CREATE_TABLE_reservations = `
|
||||
CREATE TABLE IF NOT EXISTS reservations (
|
||||
id VARCHAR(36) NOT NULL PRIMARY KEY,
|
||||
username VARCHAR(64) NOT NULL UNIQUE,
|
||||
username VARCHAR(64) NOT NULL,
|
||||
password VARCHAR(255) NOT NULL,
|
||||
date_range_start DATETIME NOT NULL,
|
||||
date_range_end DATETIME NOT NULL,
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue