16 lines
255 B
Ruby
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
|