SamTV12345-PodFetch/migrations/sqlite/2023-03-08-210254_notificat.../up.sql

8 lines
209 B
SQL

-- Your SQL goes here
CREATE TABLE notifications (
id integer primary key not null,
type_of_message TEXT NOT NULL,
message TEXT NOT NULL,
created_at TEXT NOT NULL,
status TEXT NOT NULL
)