Compare commits
1 Commits
2024.3.3-s
...
2024.3.4-s
Author | SHA1 | Date | |
---|---|---|---|
4a1a434556 |
@ -1,3 +1,5 @@
|
|||||||
|
PRAGMA foreign_keys = 0;
|
||||||
|
|
||||||
CREATE TABLE tenants (
|
CREATE TABLE tenants (
|
||||||
id TEXT PRIMARY KEY,
|
id TEXT PRIMARY KEY,
|
||||||
label TEXT NOT NULL,
|
label TEXT NOT NULL,
|
||||||
@ -49,4 +51,6 @@ CREATE TABLE specs
|
|||||||
|
|
||||||
INSERT INTO specs SELECT id, agent_id, name, revision, data, created_at, updated_at, 0 FROM _specs;
|
INSERT INTO specs SELECT id, agent_id, name, revision, data, created_at, updated_at, 0 FROM _specs;
|
||||||
|
|
||||||
DROP TABLE _specs;
|
DROP TABLE _specs;
|
||||||
|
|
||||||
|
PRAGMA foreign_keys = 1;
|
Reference in New Issue
Block a user