Files
gitlink-forgeplus/db/migrate/20210111065934_create_organization_users.rb
2021-02-06 14:27:47 +08:00

11 lines
214 B
Ruby

class CreateOrganizationUsers < ActiveRecord::Migration[5.2]
def change
create_table :organization_users do |t|
t.references :user
t.references :organization
t.timestamps
end
end
end