mirror of
https://github.com/openSUSE/osem.git
synced 2026-08-13 19:54:02 +00:00
16 lines
362 B
Ruby
16 lines
362 B
Ruby
|
|
class CreateTableSupporterRegistrations < ActiveRecord::Migration
|
||
|
|
def up
|
||
|
|
create_table :supporter_registrations do |t|
|
||
|
|
t.references :registration
|
||
|
|
t.references :supporter_level
|
||
|
|
t.string :email
|
||
|
|
t.string :code
|
||
|
|
t.boolean :code_is_valid, :default => false
|
||
|
|
end
|
||
|
|
end
|
||
|
|
|
||
|
|
def down
|
||
|
|
drop_table :supporter_registrations
|
||
|
|
end
|
||
|
|
end
|