]> git.stg.codes - stg.git/blobdiff - stargazer/inst/var/01-alter-02.sql
Move projects back into subfolder.
[stg.git] / stargazer / inst / var / 01-alter-02.sql
diff --git a/stargazer/inst/var/01-alter-02.sql b/stargazer/inst/var/01-alter-02.sql
deleted file mode 100644 (file)
index 628a016..0000000
+++ /dev/null
@@ -1,15 +0,0 @@
-/*
- *  DB migration from v01 to v02 (firebird)
- */
-
-CREATE DOMAIN DM_TARIFF_PERIOD AS VARCHAR(32) NOT NULL
-    CHECK (VALUE = 'month' OR VALUE = 'day');
-
-ALTER TABLE tb_tariffs ADD period DM_TARIFF_PERIOD DEFAULT 'month';
-
-CREATE TABLE tb_info
-(
-    version INTEGER NOT NULL
-);
-
-INSERT INTO tb_info VALUES (1);