From fe2a9cc515cfdc222720469aa2c014e63b46be76 Mon Sep 17 00:00:00 2001 From: mitsuha_s Date: Sun, 21 Aug 2022 23:39:02 +0300 Subject: [PATCH] code style changes --- migrations/0000.initial_schema.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) 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' ')'