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