First release
This commit is contained in:
@@ -0,0 +1 @@
|
||||
DROP TABLE jrentries;
|
||||
@@ -0,0 +1 @@
|
||||
-- This file should undo anything in `up.sql`
|
||||
@@ -0,0 +1,8 @@
|
||||
CREATE TABLE jrentries (
|
||||
id INTEGER AUTO_INCREMENT NOT NULL PRIMARY KEY,
|
||||
row_pos INTEGER NOT NULL,
|
||||
jrtable_id INTEGER NOT NULL,
|
||||
FOREIGN KEY (jrtable_id) REFERENCES jrtables(id)
|
||||
ON DELETE CASCADE
|
||||
ON UPDATE CASCADE
|
||||
);
|
||||
@@ -0,0 +1 @@
|
||||
-- Your SQL goes here
|
||||
Reference in New Issue
Block a user