heylium_app/db/migrate/20140710140837_create_registrants.rb
Nicolas Bally 8e18de4077 initial
2016-08-03 00:22:29 +02:00

14 lines
252 B
Ruby
Executable File

class CreateRegistrants < ActiveRecord::Migration
def change
create_table :registrants do |t|
t.string :token
t.string :name
t.string :surname
t.string :email
t.boolean :enabled
t.timestamps
end
end
end