aboutsummaryrefslogtreecommitdiff
path: root/db
diff options
context:
space:
mode:
authorhellekin <hellekin@cepheide.org>2020-10-05 21:51:37 +0200
committerhellekin <hellekin@cepheide.org>2020-10-05 21:51:37 +0200
commit48031dde29d6dc4a0ba84c445ae4c07627257d4a (patch)
treefdbe4b896b04ad9e39ebb0b73516b77b61330dd2 /db
parent81fb71f0510a5464634a65d97939f6fa54f419dd (diff)
downloadincommon-map-48031dde29d6dc4a0ba84c445ae4c07627257d4a.tar.gz
Configure Discourse SSO
We're creating a minimal User model that will be filled from SSO. We also configure Inflections so we can use SSO instead of Sso which looks weird for a module named after an acronym. Use Discourse as SSO: https://meta.discourse.org/t/using-discourse-as-a-sso-provider/32974
Diffstat (limited to 'db')
-rw-r--r--db/migrate/20201005154823_create_users.rb15
1 files changed, 15 insertions, 0 deletions
diff --git a/db/migrate/20201005154823_create_users.rb b/db/migrate/20201005154823_create_users.rb
new file mode 100644
index 0000000..2d8403c
--- /dev/null
+++ b/db/migrate/20201005154823_create_users.rb
@@ -0,0 +1,15 @@
+class CreateUsers < ActiveRecord::Migration[6.0]
+ def change
+ create_table :users do |t|
+ t.string :name
+ t.string :username
+ t.string :email
+ t.bigint :external_id
+ t.string :avatar_url
+
+ t.timestamps
+ end
+ add_index :users, [:external_id], unique: true
+ add_index :users, [:email], unique: true
+ end
+end