9 lines
248 B
SQL
9 lines
248 B
SQL
CREATE TABLE IF NOT EXISTS app_bootstrap_check (
|
|
id INT AUTO_INCREMENT PRIMARY KEY,
|
|
message VARCHAR(255) NOT NULL,
|
|
created_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP
|
|
);
|
|
|
|
INSERT INTO app_bootstrap_check (message)
|
|
VALUES ('recipe-db initialized');
|