mirror of
https://github.com/indentlabs/notebook.git
synced 2025-10-26 11:19:22 +00:00
13 lines
296 B
Ruby
13 lines
296 B
Ruby
class CreateImageUploads < ActiveRecord::Migration[4.2]
|
|
def change
|
|
create_table :image_uploads do |t|
|
|
t.string :privacy
|
|
t.references :user, index: true, foreign_key: true
|
|
t.string :content_type
|
|
t.integer :content_id
|
|
|
|
t.timestamps null: false
|
|
end
|
|
end
|
|
end
|