#21: Tables created
Sorted out the migratus stuff so that it actually works, and added a bit to README to say how to get the database initialised; added a new migration to add the roles and teams table.
This commit is contained in:
parent
3850753743
commit
d83a7924e2
6 changed files with 574 additions and 158 deletions
11
resources/migrations/20170315190500-roles-and-teams.down.sql
Normal file
11
resources/migrations/20170315190500-roles-and-teams.down.sql
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
drop table teammemberships;
|
||||
|
||||
drop index ix_teams_name;
|
||||
|
||||
drop table teams;
|
||||
|
||||
drop table rolememberships;
|
||||
|
||||
drop index ix_roles_name;
|
||||
|
||||
drop table roles;
|
||||
Loading…
Add table
Add a link
Reference in a new issue