summaryrefslogtreecommitdiff
path: root/db/migrate/20140617183709_create_register_tokens.rb
blob: efb79424f0e807d21318a4e932d98dec680bd5e4 (plain)
1
2
3
4
5
6
7
8
9
class CreateRegisterTokens < ActiveRecord::Migration
  def change
     create_table :register_tokens do |t|
       t.string :uuid, limit: 32, primary: true, null: false
       t.string :token, limit: 6, null: false
       t.string :email, null: false
     end
  end
end