Page MenuHomeWickedGov Phorge

patch-content_models-model_id-fix_not_null.sql
No OneTemporary

Size
385 B
Referenced Files
None
Subscribers
None

patch-content_models-model_id-fix_not_null.sql

CREATE TABLE /*_*/content_models_tmp (
model_id INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL,
model_name BLOB NOT NULL
);
INSERT INTO /*_*/content_models_tmp
SELECT model_id, model_name
FROM /*_*/content_models;
DROP TABLE /*_*/content_models;
ALTER TABLE /*_*/content_models_tmp RENAME TO /*_*/content_models;
CREATE UNIQUE INDEX model_name ON /*_*/content_models (model_name);

File Metadata

Mime Type
text/plain
Expires
Sat, May 16, 20:49 (1 d, 4 h)
Storage Engine
local-disk
Storage Format
Raw Data
Storage Handle
2c/a3/9aa330e5b127a9f668ede0471eda
Default Alt Text
patch-content_models-model_id-fix_not_null.sql (385 B)

Event Timeline