10 lines
175 B
Ruby
10 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
|