From 4bc02261a6b2147ced2fc1e701bd85ab7ae5c7c1 Mon Sep 17 00:00:00 2001 From: atusa17 Date: Sun, 10 Feb 2019 13:00:26 -0700 Subject: [PATCH] PAN-6 Changed the default version in the SQL script --- .../persistence/scripts/mysql/local_development.sql | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pandamonium-theorem-prover/persistence/scripts/mysql/local_development.sql b/pandamonium-theorem-prover/persistence/scripts/mysql/local_development.sql index 3cdd74a..1f885cc 100644 --- a/pandamonium-theorem-prover/persistence/scripts/mysql/local_development.sql +++ b/pandamonium-theorem-prover/persistence/scripts/mysql/local_development.sql @@ -7,7 +7,7 @@ username varchar(50) not null unique, password varchar(256) not null, administrator_status boolean default false, last_login date, -version int default 0 +version int default 1 ); insert into accounts (username, password, administrator_status) values ('admin', 'secret', true), @@ -21,5 +21,5 @@ id int not null auto_increment primary key unique, name varchar(200) not null, definition json not null, notation json, -version int default 0 +version int default 1 ); \ No newline at end of file