Skip to content

Commit

Permalink
Added SQL for populating eras table
Browse files Browse the repository at this point in the history
  • Loading branch information
b-turchyn committed May 26, 2011
1 parent 8cbc7e2 commit 22d1927
Show file tree
Hide file tree
Showing 9 changed files with 33 additions and 7 deletions.
2 changes: 1 addition & 1 deletion src/install/tabledata/001-create-table-eras.sql.sha1
@@ -1 +1 @@
6bd260ce0d6f88180f59212a8c9fe25e29a89a9e 001-create-table-eras.sql
6bd260ce0d6f88180f59212a8c9fe25e29a89a9e
2 changes: 1 addition & 1 deletion src/install/tabledata/002-create-table-names.sql.sha1
@@ -1 +1 @@
e7e083f1a0a54d12111f9c94914d299c205591cd 002-create-table-names.sql
acce2060124abbbc0423736d4f80db3b2e075a0c
2 changes: 1 addition & 1 deletion src/install/tabledata/003-create-table-countries.sql.sha1
@@ -1 +1 @@
81ed3c6b2c2a188560d06c2b7dcdd6abbc9a8fb3 003-create-table-countries.sql
81ed3c6b2c2a188560d06c2b7dcdd6abbc9a8fb3
2 changes: 1 addition & 1 deletion src/install/tabledata/004-create-table-cities.sql.sha1
@@ -1 +1 @@
dbf9171ca1f49b96d7dd0b06becfe28397470e5f 004-create-table-cities.sql
dbf9171ca1f49b96d7dd0b06becfe28397470e5f
2 changes: 1 addition & 1 deletion src/install/tabledata/005-create-table-colleges.sql.sha1
@@ -1 +1 @@
b383f00d990560088fea47f418c47e4e83e47551 005-create-table-colleges.sql
b383f00d990560088fea47f418c47e4e83e47551
@@ -1 +1 @@
1e00bf10662ccabc54136e88c3183a32dbf34005 006-create-table-streetnames.sql
1e00bf10662ccabc54136e88c3183a32dbf34005
@@ -1 +1 @@
2b27f402f9a6e857a998e540eeab5ddd725c4529 007-create-table-governments.sql
2b27f402f9a6e857a998e540eeab5ddd725c4529
25 changes: 25 additions & 0 deletions src/install/tabledata/101-populate-table-eras.sql
@@ -0,0 +1,25 @@
INSERT INTO %seras (
`era_id`,
`era_name`,
`deleted_dt`
)
VALUES (
NULL,
'1890s',
NULL
),
(
NULL,
'1920s',
NULL
),
(
NULL,
'1990s',
NULL
),
(
NULL,
'Delta Green',
NULL
);
1 change: 1 addition & 0 deletions src/install/tabledata/101-populate-table-eras.sql.sha1
@@ -0,0 +1 @@
36b8c37f392580f4f2cc810351e3d34b1fd76f69

0 comments on commit 22d1927

Please sign in to comment.