This repository has been archived on 2024-08-27. You can view files and clone it, but cannot push or open issues or pull requests.
redstoner.com/db/migrate/20140617183709_create_register_tokens.rb
2016-02-07 14:27:57 +01:00

9 lines
269 B
Ruby

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