mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 03:40:00 +08:00
18 lines
500 B
Ruby
18 lines
500 B
Ruby
# frozen_string_literal: true
|
|
|
|
class CreateInvites < ActiveRecord::Migration[4.2]
|
|
def change
|
|
create_table :invites do |t|
|
|
t.string :invite_key, null: false, limit: 32
|
|
t.string :email, null: false
|
|
t.integer :invited_by_id, null: false
|
|
t.integer :user_id, null: true
|
|
t.timestamp :redeemed_at, null: true
|
|
t.timestamps null: false
|
|
end
|
|
|
|
add_index :invites, :invite_key, unique: true
|
|
add_index :invites, %i[email invited_by_id], unique: true
|
|
end
|
|
end
|