9 lines
171 B
Ruby
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
|