Fix typos from template.

This commit is contained in:
2025-08-25 15:41:30 +10:00
parent 3868d92430
commit a2bbacfeb0
2 changed files with 6 additions and 2 deletions

View File

@@ -1,10 +1,12 @@
BEGIN;
-- Metadata {{{
CREATE TABLE version_history(
component TEXT NOT NULL,
from_version INTEGER NOT NULL,
to_version INTEGER NOT NULL,
author TEXT NOT NULL,
_timestamp TIMESTAMPTZ NOT NULL DEFAULT NOW(),
_timestamp TIMESTAMPTZ NOT NULL DEFAULT NOW()
);
INSERT INTO version_history (component, from_version, to_version, author) VALUES ('ROOT', 0, 1, 'Initial Creation');
@@ -35,4 +37,6 @@ CREATE TABLE bot_config(
-- TODO: Profile data
COMMIT;
-- vim: set fdm=marker: