Files
yii/tests/framework/web/CSortTest.sql
alexander.makarow 1f757cbf53 improved unit tests
2011-02-18 15:25:38 +00:00

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)
);