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