intra_app/db/migrate/20181108201122_create_i_websites.rb
Nicolas Bally 761e075bb6 initial
2018-11-08 21:47:30 +01:00

14 lines
267 B
Ruby

class CreateIWebsites < ActiveRecord::Migration
def change
create_table :i_websites do |t|
t.string :name
t.string :url
t.string :prov_url
t.string :status
t.references :p_customer
t.timestamps null: false
end
end
end