Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
W
wantzel
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
9
Issues
9
List
Boards
Labels
Service Desk
Milestones
Merge Requests
2
Merge Requests
2
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
La Quadrature du Net
rpteam
wantzel
Commits
32d7cf64
Commit
32d7cf64
authored
May 19, 2015
by
Mindiell
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
SQL commands in order to create tables of sqlite3 local db
parent
e29bb8f7
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
0 deletions
+8
-0
create_database.sql
create_database.sql
+8
-0
No files found.
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
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a 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