foodsoft/db/migrate/20160220000000_create_documents.foodsoft_documents_engine.rb
2020-09-05 14:40:11 +02:00

15 lines
307 B
Ruby

class CreateDocuments < ActiveRecord::Migration[4.2]
def self.up
create_table :documents do |t|
t.string :name
t.string :mime
t.binary :data, limit: 16.megabyte
t.integer :created_by_user_id
t.timestamps
end
end
def self.down
drop_table :documents
end
end