mirror of
https://github.com/yiisoft/yii.git
synced 2026-03-03 14:54:04 +01:00
12 lines
197 B
SQL
12 lines
197 B
SQL
CREATE TABLE comment (
|
|
id INTEGER PRIMARY KEY,
|
|
post_id INTEGER,
|
|
text text,
|
|
created_at INTEGER
|
|
);
|
|
|
|
CREATE TABLE post (
|
|
id INTEGER PRIMARY KEY,
|
|
created_at INTEGER,
|
|
title VARCHAR(255)
|
|
); |