blob: cc2b8215255ab27a74b75e78d721346d4331e742 (
plain)
1
2
3
4
5
6
7
8
9
10
|
class CreateOfferWorkbenches < ActiveRecord::Migration
def change
create_table :offer_workbenches do |t|
t.string :name
t.references :organisation, index: true
t.timestamps
end
end
end
|