From f79334948eb20f9672b396b3c86322d50e601613 Mon Sep 17 00:00:00 2001 From: Yanislav Igonin Date: Sun, 31 Oct 2021 10:41:12 +0200 Subject: [PATCH] feat: rename init migration --- .../{000001_init.down.sql => 20211031083929_init.down.sql} | 0 migrations/{000001_init.up.sql => 20211031083929_init.up.sql} | 4 ---- 2 files changed, 4 deletions(-) rename migrations/{000001_init.down.sql => 20211031083929_init.down.sql} (100%) rename migrations/{000001_init.up.sql => 20211031083929_init.up.sql} (96%) diff --git a/migrations/000001_init.down.sql b/migrations/20211031083929_init.down.sql similarity index 100% rename from migrations/000001_init.down.sql rename to migrations/20211031083929_init.down.sql diff --git a/migrations/000001_init.up.sql b/migrations/20211031083929_init.up.sql similarity index 96% rename from migrations/000001_init.up.sql rename to migrations/20211031083929_init.up.sql index a100acc..cf4cc79 100644 --- a/migrations/000001_init.up.sql +++ b/migrations/20211031083929_init.up.sql @@ -1,5 +1,3 @@ --- UP --- Posts CREATE TABLE posts ( id SERIAL NOT NULL, @@ -19,8 +17,6 @@ CREATE TABLE posts PRIMARY KEY (id) ); - --- Files CREATE TABLE files ( id SERIAL PRIMARY KEY,