9 lines
311 B
Go
9 lines
311 B
Go
package storage
|
|
|
|
// migration012 — add template_id, fs_path, archived columns to nodes.
|
|
const migration012 = `
|
|
ALTER TABLE nodes ADD COLUMN template_id TEXT NOT NULL DEFAULT '';
|
|
ALTER TABLE nodes ADD COLUMN fs_path TEXT NOT NULL DEFAULT '';
|
|
ALTER TABLE nodes ADD COLUMN archived INTEGER NOT NULL DEFAULT 0;
|
|
`
|