PlainSQLiteBlog/db/sqlite/create_sessions_table.sql

6 lines
183 B
SQL

CREATE table if not exists sessions (
id integer primary key autoincrement,
username text not null,
token text not null,
expires timestamp null)