mirror of
https://github.com/lunaisnotaboy/mastodon.git
synced 2024-11-04 14:04:39 +00:00
13 lines
289 B
Ruby
13 lines
289 B
Ruby
# frozen_string_literal: true
|
|
|
|
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
|