From a7881f40ccaa623d757e762d1215d5e9bc9d1a7a Mon Sep 17 00:00:00 2001 From: Akshay Date: Sat, 26 Dec 2020 20:13:19 +0530 Subject: add AR integration --- backend/migrations/2020-12-26-051845_ar_integration/down.sql | 6 ++++++ backend/migrations/2020-12-26-051845_ar_integration/up.sql | 6 ++++++ 2 files changed, 12 insertions(+) create mode 100644 backend/migrations/2020-12-26-051845_ar_integration/down.sql create mode 100644 backend/migrations/2020-12-26-051845_ar_integration/up.sql (limited to 'backend/migrations/2020-12-26-051845_ar_integration') diff --git a/backend/migrations/2020-12-26-051845_ar_integration/down.sql b/backend/migrations/2020-12-26-051845_ar_integration/down.sql new file mode 100644 index 0000000..f61b527 --- /dev/null +++ b/backend/migrations/2020-12-26-051845_ar_integration/down.sql @@ -0,0 +1,6 @@ +-- This file should undo anything in `up.sql` +alter table product +drop column src; + +alter table product +drop column ios_src; diff --git a/backend/migrations/2020-12-26-051845_ar_integration/up.sql b/backend/migrations/2020-12-26-051845_ar_integration/up.sql new file mode 100644 index 0000000..16aa805 --- /dev/null +++ b/backend/migrations/2020-12-26-051845_ar_integration/up.sql @@ -0,0 +1,6 @@ +-- Your SQL goes here +alter table product +add src text(500); + +alter table product +add ios_src text(500); -- cgit v1.2.3