BootstrapSQLiteBlog/db/mysql/create_sessions_table.sql

6 lines
184 B
SQL

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