Page MenuHomeGRNET

20170211130636_create_rejected_hosts_table.rb
No OneTemporary

File Metadata

Created
Wed, Jan 21, 2:07 AM

20170211130636_create_rejected_hosts_table.rb

class CreateRejectedHostsTable < ActiveRecord::Migration
def change
create_table :rejected_hosts do |t|
t.binary :name, limit: 255, null: false
t.binary :fqdn, limit: 255, null: false
t.references :user
t.integer :rejecter_id
t.text :reason
t.datetime :host_created_at
t.timestamps
end
add_index :rejected_hosts, :name
end
end

Event Timeline