demarches-normaliennes/db/migrate/20191211101608_create_exports.rb
2019-12-18 13:13:15 +01:00

9 lines
171 B
Ruby

class CreateExports < ActiveRecord::Migration[5.2]
def change
create_table :exports do |t|
t.string :format, null: false
t.timestamps
end
end
end