Add flyway database migration tool. Read diva news from database

This commit is contained in:
samnyan
2020-01-17 01:03:14 +09:00
parent a9a9ae4bbc
commit 3d99839fef
15 changed files with 7229 additions and 9 deletions

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1,10 @@
-- Table: property
CREATE TABLE property
(
id BIGINT NOT NULL,
property_key VARCHAR(255) UNIQUE,
property_value VARCHAR(255),
PRIMARY KEY (
id
)
);