This repository has been archived on 2021-11-24. You can view files and clone it, but cannot push or open issues or pull requests.
phone_app/db/migrate/20190528130555_create_s_sites.rb
2021-08-23 10:26:02 +02:00

13 lines
244 B
Ruby

class CreateSSites < ActiveRecord::Migration[6.0]
def change
create_table :s_sites do |t|
t.string :name
t.text :description
t.boolean :externe
t.references :s_site_type
t.timestamps
end
end
end