mirror of
https://github.com/lunaisnotaboy/mastodon.git
synced 2024-10-31 20:14:26 +00:00
11 lines
241 B
Ruby
11 lines
241 B
Ruby
|
class CreateUserInviteRequests < ActiveRecord::Migration[5.2]
|
||
|
def change
|
||
|
create_table :user_invite_requests do |t|
|
||
|
t.belongs_to :user, foreign_key: { on_delete: :cascade }
|
||
|
t.text :text
|
||
|
|
||
|
t.timestamps
|
||
|
end
|
||
|
end
|
||
|
end
|