moving from gitlab
This commit is contained in:
@@ -0,0 +1,9 @@
|
||||
create table Todos (
|
||||
Id integer PRIMARY KEY NOT NULL,
|
||||
Title varchar(128) NOT NULL,
|
||||
Completed integer NOT NULL
|
||||
);
|
||||
|
||||
insert into Todos values(NULL, 'code this app', 0);
|
||||
insert into Todos values(NULL, 'finish this video', 0);
|
||||
|
||||
Reference in New Issue
Block a user