5596e37b1e
Added connection Added healthcheck Added migration
9 lines
219 B
SQL
9 lines
219 B
SQL
-- Create users table if it doesn't exist
|
|
CREATE TABLE IF NOT EXISTS users (
|
|
id INT PRIMARY KEY,
|
|
username TEXT NOT NULL UNIQUE,
|
|
password TEXT NOT NULL,
|
|
created_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP
|
|
);
|
|
|