mirror of
https://github.com/MewoLab/AquaDX.git
synced 2026-02-09 02:37:27 +08:00
Add flyway database migration tool. Read diva news from database
This commit is contained in:
9687
src/main/resources/db/migration/sqlite/V1__init_db.sql
Normal file
9687
src/main/resources/db/migration/sqlite/V1__init_db.sql
Normal file
File diff suppressed because it is too large
Load Diff
@@ -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
|
||||
)
|
||||
);
|
||||
Reference in New Issue
Block a user