diff options
author | Jeffrey Armstrong <jeff@approximatrix.com> | 2021-04-15 12:03:51 -0400 |
---|---|---|
committer | Jeffrey Armstrong <jeff@approximatrix.com> | 2021-04-15 12:03:51 -0400 |
commit | efb5d8cec9531637c91fc1087f9c83b4d89a5612 (patch) | |
tree | 53368c28e9341bf06899cce1d0752c7dfcaabf35 /captain | |
parent | df837aa90fc8357415924b3008cb163b02ffc571 (diff) | |
download | levitating-efb5d8cec9531637c91fc1087f9c83b4d89a5612.tar.gz levitating-efb5d8cec9531637c91fc1087f9c83b4d89a5612.zip |
Fixed typo in database creation
Diffstat (limited to 'captain')
-rw-r--r-- | captain/sql/create.sql | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/captain/sql/create.sql b/captain/sql/create.sql index edb21c7..c09d120 100644 --- a/captain/sql/create.sql +++ b/captain/sql/create.sql @@ -7,5 +7,5 @@ CREATE TABLE tasks(job INTEGER, task INTEGER, status INTEGER, FOREIGN KEY(job) R CREATE TABLE instructions(id INTEGER PRIMARY KEY, name TEXT UNIQUE NOT NULL); -CREATE TABLE available(instruction INTEGER, player INTEGER, FOREIGN KEY(instruction) REFERENCES instructions(id), FOREIGN KEY(player) REFERENCES players(id), UNIQUE(instructions, player)); +CREATE TABLE available(instruction INTEGER, player INTEGER, FOREIGN KEY(instruction) REFERENCES instructions(id), FOREIGN KEY(player) REFERENCES players(id), UNIQUE(instruction, player)); |