Removes unused migrations
This commit is contained in:
parent
e6fae146a5
commit
051e84de86
5 changed files with 1 additions and 23 deletions
10
internal/database/migrations/1_feed.sql
Normal file
10
internal/database/migrations/1_feed.sql
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
-- +migrate Up
|
||||
CREATE table feed (
|
||||
id INTEGER PRIMARY KEY,
|
||||
name text NOT NULL,
|
||||
url text NOT NULL UNIQUE,
|
||||
type text NOT NULL
|
||||
);
|
||||
|
||||
-- +migrate Down
|
||||
DROP TABLE feed;
|
||||
Loading…
Add table
Add a link
Reference in a new issue