From 355fd7cb1dcaa432b024fc43e050f558508fa24c Mon Sep 17 00:00:00 2001 From: Kitaiti Makoto Date: Tue, 4 Jan 2022 21:22:32 +0900 Subject: [PATCH] Generate create_email_signups_table migration % diesel migration generate create_email_signups_table --- .../2022-01-04-122156_create_email_signups_table/down.sql | 1 + .../postgres/2022-01-04-122156_create_email_signups_table/up.sql | 1 + 2 files changed, 2 insertions(+) create mode 100644 migrations/postgres/2022-01-04-122156_create_email_signups_table/down.sql create mode 100644 migrations/postgres/2022-01-04-122156_create_email_signups_table/up.sql diff --git a/migrations/postgres/2022-01-04-122156_create_email_signups_table/down.sql b/migrations/postgres/2022-01-04-122156_create_email_signups_table/down.sql new file mode 100644 index 00000000..291a97c5 --- /dev/null +++ b/migrations/postgres/2022-01-04-122156_create_email_signups_table/down.sql @@ -0,0 +1 @@ +-- This file should undo anything in `up.sql` \ No newline at end of file diff --git a/migrations/postgres/2022-01-04-122156_create_email_signups_table/up.sql b/migrations/postgres/2022-01-04-122156_create_email_signups_table/up.sql new file mode 100644 index 00000000..33cf74b5 --- /dev/null +++ b/migrations/postgres/2022-01-04-122156_create_email_signups_table/up.sql @@ -0,0 +1 @@ +-- Your SQL goes here \ No newline at end of file