diff --git a/migrations/0000.initial_schema.py b/migrations/0000.initial_schema.py index 5f4b2a5..be7fa0a 100644 --- a/migrations/0000.initial_schema.py +++ b/migrations/0000.initial_schema.py @@ -3,11 +3,12 @@ from yoyo import step steps = [ step( 'CREATE TABLE users (' - ' id SERIAL PRIMARY KEY,' + ' id SERIAL PRIMARY KEY,' ' telegram_id INTEGER NOT NULL UNIQUE' ')' ), - step('CREATE TABLE feeds (' + step( + 'CREATE TABLE feeds (' ' id SERIAL PRIMARY KEY,' ' url TEXT NOT NULL UNIQUE' ')'