From 84dad3d53cc9ee0f237c5065314de00b1b0c7e5e Mon Sep 17 00:00:00 2001 From: Alban Peignier Date: Wed, 4 May 2016 15:49:57 +0200 Subject: Create StopAreaReferential with a basic controller and a seed for STIF context. Refs #820 --- .../20160504130055_create_stop_area_referentials.rb | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 db/migrate/20160504130055_create_stop_area_referentials.rb (limited to 'db/migrate') diff --git a/db/migrate/20160504130055_create_stop_area_referentials.rb b/db/migrate/20160504130055_create_stop_area_referentials.rb new file mode 100644 index 000000000..7c7fc0285 --- /dev/null +++ b/db/migrate/20160504130055_create_stop_area_referentials.rb @@ -0,0 +1,15 @@ +class CreateStopAreaReferentials < ActiveRecord::Migration + def change + create_table :stop_area_referentials do |t| + t.string :name + + t.timestamps + end + + create_table :stop_area_referential_memberships do |t| + t.belongs_to :organisation + t.belongs_to :stop_area_referential + t.boolean :owner + end + end +end -- cgit v1.2.3