2023-07-12 17:47:08 +10:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2017-09-14 08:04:30 +10:00
|
|
|
class CreateSiteUploads < ActiveRecord::Migration[5.1]
|
|
|
|
def change
|
|
|
|
create_table :site_uploads do |t|
|
|
|
|
t.string :var, default: '', null: false, index: { unique: true }
|
|
|
|
t.attachment :file
|
|
|
|
t.json :meta
|
|
|
|
t.timestamps
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|