HEX
Server: Apache
System: Windows NT MAGNETO-ARM 10.0 build 22000 (Windows 10) AMD64
User: Michel (0)
PHP: 7.4.7
Disabled: NONE
Upload Files
File: C:/Redmine-4.x/redmine-4.2.9/db/migrate/20150113194759_create_email_addresses.rb
class CreateEmailAddresses < ActiveRecord::Migration[4.2]
  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, :datetime, :null => false
      t.column :updated_on, :datetime, :null => false
    end
  end
end