2019-05-02 18:17:27 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2019-03-27 07:30:59 -04:00
|
|
|
class CreateGroupRequests < ActiveRecord::Migration[5.2]
|
|
|
|
def change
|
|
|
|
create_table :group_requests do |t|
|
|
|
|
t.integer :group_id
|
|
|
|
t.integer :user_id
|
|
|
|
t.text :reason
|
|
|
|
|
|
|
|
t.timestamps
|
|
|
|
end
|
|
|
|
|
|
|
|
add_index :group_requests, :group_id
|
|
|
|
add_index :group_requests, :user_id
|
|
|
|
end
|
|
|
|
end
|