From 84997369062561c99fa2a3f989ed44ad873f4ab7 Mon Sep 17 00:00:00 2001 From: Eric Harmeling Date: Thu, 18 Jun 2020 11:08:11 -0400 Subject: [PATCH] Removed commented-out SQL statements --- roach-data-jdbc/src/main/resources/db/create.sql | 10 ---------- 1 file changed, 10 deletions(-) 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');