9 lines
175 B
Ruby
9 lines
175 B
Ruby
class CreateEvenementVies < ActiveRecord::Migration
|
|
def change
|
|
create_table :evenement_vies do |t|
|
|
t.string :nom
|
|
|
|
t.timestamps null: false
|
|
end
|
|
end
|
|
end
|