diff --git a/roach-data-jdbc/src/main/resources/db/create.sql b/roach-data-jdbc/src/main/resources/db/create.sql index 4b89e03..349f461 100644 --- a/roach-data-jdbc/src/main/resources/db/create.sql +++ b/roach-data-jdbc/src/main/resources/db/create.sql @@ -1,7 +1,3 @@ --- DROP TABLE IF EXISTS account cascade; --- DROP TABLE IF EXISTS databasechangelog cascade; --- DROP TABLE IF EXISTS databasechangeloglock cascade; - create table account ( id int not null primary key default unique_rowid(), @@ -9,9 +5,3 @@ create table account name varchar(128) not null, type varchar(25) not null ); - --- insert into account (id,balance,name,type) values --- (1, 500.00,'Alice','asset'), --- (2, 500.00,'Bob','expense'), --- (3, 500.00,'Bobby Tables','asset'), --- (4, 500.00,'Doris','expense');