Setting up initial company setup.
This commit is contained in:
1
migrator/migrations/1522800061-DOWN.sql
Normal file
1
migrator/migrations/1522800061-DOWN.sql
Normal file
@@ -0,0 +1 @@
|
||||
DROP TABLE companies (id serial primary key, name varchar(255), data text);
|
||||
8
migrator/migrations/1522800061-UP.sql
Normal file
8
migrator/migrations/1522800061-UP.sql
Normal file
@@ -0,0 +1,8 @@
|
||||
-- 1522800061 UP
|
||||
CREATE TABLE companies (id serial primary key, name varchar(255), data text);
|
||||
|
||||
insert into companies (name, data) values ('Campbell Brewing Company', '{:matches ["campbell brewing company" "campbell brewery company" "campbell brewing"]}');
|
||||
|
||||
insert into companies (name, data) values ('Brown Chicken Brown Cow', '{:matches ["brown chicken brown cow"]}');
|
||||
|
||||
insert into companies (name, data) values ('Naschmarkt Restaurant', '{:matches ["naschmarkt" "naschmarkt restaurant"]}');
|
||||
Reference in New Issue
Block a user