BootstrapSQLiteBlog/db/sqlite/create_settings_table.sql

5 lines
139 B
SQL

CREATE table if not exists settings (
id integer primary key autoincrement,
setting text not null,
value text not null)