crossey_app/db/migrate/20100426091649_create_inscrits.rb
2013-09-30 17:42:55 +02:00

16 lines
255 B
Ruby

class CreateInscrits < ActiveRecord::Migration
def self.up
create_table :inscrits do |t|
t.string :email
t.string :verify_key
t.boolean :enabled
t.timestamps
end
end
def self.down
drop_table :inscrits
end
end