7 lines
153 B
SQL
7 lines
153 B
SQL
drop table if exists entries;
|
|
create table entries (
|
|
id integer primary key autoincrement,
|
|
title text not null,
|
|
text text not null
|
|
|
|
);
|