mirror of
https://github.com/wassname/HackFlowy.git
synced 2026-09-10 11:40:37 +08:00
Fixed default data insert.
This commit is contained in:
@@ -1,6 +1,7 @@
|
|||||||
.sass-cache
|
.sass-cache
|
||||||
config.js
|
config.js
|
||||||
lib-cov
|
lib-cov
|
||||||
|
*.swp
|
||||||
*.seed
|
*.seed
|
||||||
*.log
|
*.log
|
||||||
*.csv
|
*.csv
|
||||||
|
|||||||
+1
-1
@@ -10,7 +10,7 @@ CREATE TABLE IF NOT EXISTS "Tasks" (
|
|||||||
"createdAt" TIMESTAMP WITH TIME ZONE
|
"createdAt" TIMESTAMP WITH TIME ZONE
|
||||||
);
|
);
|
||||||
|
|
||||||
INSERT INTO tasks (id, content, timestamp, parent_id) VALUES
|
INSERT INTO "Tasks" (id, content, timestamp, parent_id) VALUES
|
||||||
(96, 'Welcome to HackFlowy!', 1365610846, 0),
|
(96, 'Welcome to HackFlowy!', 1365610846, 0),
|
||||||
(99, 'An open-source WorkFlowy clone', 1365610837, 0),
|
(99, 'An open-source WorkFlowy clone', 1365610837, 0),
|
||||||
(101, 'Built using Backbone + Socket.IO', 1365610824, 0),
|
(101, 'Built using Backbone + Socket.IO', 1365610824, 0),
|
||||||
|
|||||||
Reference in New Issue
Block a user