From e1e95388d38c0bda3877ea5f2a32ee368c725001 Mon Sep 17 00:00:00 2001 From: Lucas BEE Date: Wed, 14 Mar 2018 14:07:45 +0100 Subject: [PATCH] Drop table tokens before running migration #6 --- migrations/0006_user_token.up.sql | 1 + 1 file changed, 1 insertion(+) diff --git a/migrations/0006_user_token.up.sql b/migrations/0006_user_token.up.sql index e26c276..8859ba1 100644 --- a/migrations/0006_user_token.up.sql +++ b/migrations/0006_user_token.up.sql @@ -1,3 +1,4 @@ +DROP TABLE tokens; CREATE TABLE tokens ( token text PRIMARY KEY NOT NULL UNIQUE, username text NOT NULL REFERENCES users(name),