2020-03-24 16:45:27 +01:00
|
|
|
# frozen_string_literal:true
|
|
|
|
|
|
|
|
class CreateExports < ActiveRecord::Migration[4.2]
|
2016-07-27 11:28:54 +02:00
|
|
|
def change
|
|
|
|
create_table :exports do |t|
|
|
|
|
t.string :category
|
|
|
|
t.string :type
|
|
|
|
t.string :query
|
|
|
|
|
|
|
|
t.timestamps null: false
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|