aboutsummaryrefslogtreecommitdiff
path: root/src/main/resources/db/specific/h2
diff options
context:
space:
mode:
authorGravatar Vitaly Takmazov2022-12-15 16:03:23 +0300
committerGravatar Vitaly Takmazov2022-12-15 16:03:23 +0300
commite13c2e7e970fdfb30186edbb58d2982551f1607f (patch)
tree760f4716d05baaeacdf524325b33a3f8d33bf671 /src/main/resources/db/specific/h2
parentaa90e6ca91d42af291458a8730d5a03c60f9dd33 (diff)
postgres: baseline full schema to 1.22
Diffstat (limited to 'src/main/resources/db/specific/h2')
-rw-r--r--src/main/resources/db/specific/h2/V1.12__drop unused tables.sql5
-rw-r--r--src/main/resources/db/specific/h2/V1.13__drop unused tables.sql5
-rw-r--r--src/main/resources/db/specific/h2/V1.14__drop broken pm_streams.sql1
-rw-r--r--src/main/resources/db/specific/h2/V1.15__drop unused columns add ts for some tables.sql4
-rw-r--r--src/main/resources/db/specific/h2/V1.17__drop tags column.sql1
-rw-r--r--src/main/resources/db/specific/h2/V1.1__Add updated_at field.sql2
-rw-r--r--src/main/resources/db/specific/h2/V1.9__reply_uri_index.sql1
7 files changed, 19 insertions, 0 deletions
diff --git a/src/main/resources/db/specific/h2/V1.12__drop unused tables.sql b/src/main/resources/db/specific/h2/V1.12__drop unused tables.sql
new file mode 100644
index 00000000..1599f5f6
--- /dev/null
+++ b/src/main/resources/db/specific/h2/V1.12__drop unused tables.sql
@@ -0,0 +1,5 @@
+DROP TABLE IF EXISTS messages_votes;
+DROP TABLE IF EXISTS reader_links;
+DROP TABLE IF EXISTS reader_rss;
+DROP TABLE IF EXISTS captcha;
+DROP TABLE IF EXISTS captchaimg; \ No newline at end of file
diff --git a/src/main/resources/db/specific/h2/V1.13__drop unused tables.sql b/src/main/resources/db/specific/h2/V1.13__drop unused tables.sql
new file mode 100644
index 00000000..c35fc92c
--- /dev/null
+++ b/src/main/resources/db/specific/h2/V1.13__drop unused tables.sql
@@ -0,0 +1,5 @@
+DROP TABLE IF EXISTS ads_messages;
+DROP TABLE IF EXISTS ads_messages_log;
+DROP TABLE IF EXISTS presence;
+DROP TABLE IF EXISTS friends_facebook;
+DROP TABLE IF EXISTS users_refs; \ No newline at end of file
diff --git a/src/main/resources/db/specific/h2/V1.14__drop broken pm_streams.sql b/src/main/resources/db/specific/h2/V1.14__drop broken pm_streams.sql
new file mode 100644
index 00000000..448c5ce2
--- /dev/null
+++ b/src/main/resources/db/specific/h2/V1.14__drop broken pm_streams.sql
@@ -0,0 +1 @@
+DROP TABLE IF EXISTS pm_streams; \ No newline at end of file
diff --git a/src/main/resources/db/specific/h2/V1.15__drop unused columns add ts for some tables.sql b/src/main/resources/db/specific/h2/V1.15__drop unused columns add ts for some tables.sql
new file mode 100644
index 00000000..2350bff2
--- /dev/null
+++ b/src/main/resources/db/specific/h2/V1.15__drop unused columns add ts for some tables.sql
@@ -0,0 +1,4 @@
+ALTER TABLE subscr_users DROP COLUMN jid;
+ALTER TABLE subscr_users DROP COLUMN active;
+ALTER TABLE auth ADD COLUMN ts timestamp(6) NOT NULL DEFAULT CURRENT_TIMESTAMP;
+ALTER TABLE mail ADD COLUMN ts timestamp(6) NOT NULL DEFAULT CURRENT_TIMESTAMP; \ No newline at end of file
diff --git a/src/main/resources/db/specific/h2/V1.17__drop tags column.sql b/src/main/resources/db/specific/h2/V1.17__drop tags column.sql
new file mode 100644
index 00000000..ebb2d9a6
--- /dev/null
+++ b/src/main/resources/db/specific/h2/V1.17__drop tags column.sql
@@ -0,0 +1 @@
+ALTER TABLE messages_txt DROP COLUMN tags; \ No newline at end of file
diff --git a/src/main/resources/db/specific/h2/V1.1__Add updated_at field.sql b/src/main/resources/db/specific/h2/V1.1__Add updated_at field.sql
new file mode 100644
index 00000000..dac179b1
--- /dev/null
+++ b/src/main/resources/db/specific/h2/V1.1__Add updated_at field.sql
@@ -0,0 +1,2 @@
+ALTER TABLE messages_txt ADD COLUMN updated_at timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP;
+ALTER TABLE replies ADD COLUMN updated_at timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP;
diff --git a/src/main/resources/db/specific/h2/V1.9__reply_uri_index.sql b/src/main/resources/db/specific/h2/V1.9__reply_uri_index.sql
new file mode 100644
index 00000000..0ee3c77f
--- /dev/null
+++ b/src/main/resources/db/specific/h2/V1.9__reply_uri_index.sql
@@ -0,0 +1 @@
+create index reply_uri_index on replies(reply_uri) \ No newline at end of file