diff --git a/migrations/0000001_init.down.sql b/migrations/0000001_init.down.sql index 3f8392b..ca6df84 100644 --- a/migrations/0000001_init.down.sql +++ b/migrations/0000001_init.down.sql @@ -1 +1 @@ -DROP TABLE "user"; \ No newline at end of file +DROP TABLE "users"; \ No newline at end of file diff --git a/migrations/0000002_seed_data.down.sql b/migrations/0000002_seed_data.down.sql index 4aa33fd..36df44a 100644 --- a/migrations/0000002_seed_data.down.sql +++ b/migrations/0000002_seed_data.down.sql @@ -1,2 +1,2 @@ DELETE FROM - "user"; \ No newline at end of file + "users"; \ No newline at end of file diff --git a/migrations/0000002_seed_data.up.sql b/migrations/0000002_seed_data.up.sql index 1ce3821..e68a15a 100644 --- a/migrations/0000002_seed_data.up.sql +++ b/migrations/0000002_seed_data.up.sql @@ -1,5 +1,5 @@ INSERT INTO - "user" ( + "users" ( "id", "username", "email",