mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2025-01-06 15:40:31 +08:00
13 lines
407 B
Ruby
13 lines
407 B
Ruby
class CreateUserOrganizations < ActiveRecord::Migration
|
|
def change
|
|
create_table :user_organizations do |t|
|
|
t.column :role, :integer, null: false, default: 1
|
|
t.integer :user_id, null: false
|
|
t.integer :organization_id, null: false
|
|
|
|
t.timestamps null: false
|
|
end
|
|
add_foreign_key :user_organizations, :users
|
|
add_foreign_key :user_organizations, :organizations
|
|
end
|
|
end
|