Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Brendan Abolivier
wantzel
Commits
32d7cf64
Commit
32d7cf64
authored
May 19, 2015
by
Mindiell
Browse files
SQL commands in order to create tables of sqlite3 local db
parent
e29bb8f7
Changes
1
Hide whitespace changes
Inline
Side-by-side
create_database.sql
0 → 100644
View file @
32d7cf64
-- Run with : sqlite3 db.sqlite3 -init create_database.sql
CREATE
TABLE
moderator
(
name
varchar
(
40
));
INSERT
INTO
moderator
VALUES
(
'Mindiell'
);
CREATE
TABLE
tweets
(
last_entry_published
varchar
(
40
));
INSERT
INTO
tweets
VALUES
(
'2015-01-01 00:00:00 UTC'
);
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment