Enable documents plugin by default
This commit is contained in:
parent
8a9d7a91c9
commit
c3927e4013
4 changed files with 34 additions and 1 deletions
|
|
@ -0,0 +1,15 @@
|
|||
class CreateDocuments < ActiveRecord::Migration
|
||||
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
|
||||
Loading…
Add table
Add a link
Reference in a new issue