demarches-normaliennes/db/migrate/20191211101608_create_exports.rb

10 lines
171 B
Ruby
Raw Normal View History

2019-12-03 18:36:50 +01:00
class CreateExports < ActiveRecord::Migration[5.2]
def change
create_table :exports do |t|
t.string :format, null: false
t.timestamps
end
end
end