mirror of
https://github.com/redmine/redmine.git
synced 2025-11-11 07:46:02 +01:00
13 lines
473 B
Ruby
13 lines
473 B
Ruby
|
|
class CreateEmailAddresses < ActiveRecord::Migration
|
||
|
|
def change
|
||
|
|
create_table :email_addresses do |t|
|
||
|
|
t.column :user_id, :integer, :null => false
|
||
|
|
t.column :address, :string, :null => false
|
||
|
|
t.column :is_default, :boolean, :null => false, :default => false
|
||
|
|
t.column :notify, :boolean, :null => false, :default => true
|
||
|
|
t.column :created_on, :timestamp, :null => false
|
||
|
|
t.column :updated_on, :timestamp, :null => false
|
||
|
|
end
|
||
|
|
end
|
||
|
|
end
|