Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Finishes #13 - supporting organization enrolment and validation #17

Merged
merged 15 commits into from
Feb 28, 2018
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
removes dependency on inserting domain to organization table in fixtu…
…re data
ortonomy committed Feb 10, 2018
commit eb08dc25e9310377645a0c2bc1948b355ef58351
6 changes: 2 additions & 4 deletions db/fixtures/seed_data_fixtures.sql
Original file line number Diff line number Diff line change
@@ -40,13 +40,11 @@ BEGIN
-- create a new organization
INSERT INTO flingapp.organization(
org_name,
org_admin,
org_domain
org_admin
)
VALUES (
'Ortonomy Labs',
user1.user_id,
'ortonomy.co'
user1.user_id
)
RETURNING org_id INTO org1;
RAISE NOTICE 'New org ID is: %', org1;