Enable documents plugin by default
This commit is contained in:
parent
8a9d7a91c9
commit
c3927e4013
4 changed files with 34 additions and 1 deletions
2
Gemfile
2
Gemfile
|
@ -56,12 +56,12 @@ gem 'midi-smtp-server'
|
||||||
gem 'acts_as_versioned', git: 'https://github.com/technoweenie/acts_as_versioned.git'
|
gem 'acts_as_versioned', git: 'https://github.com/technoweenie/acts_as_versioned.git'
|
||||||
gem 'foodsoft_wiki', path: 'plugins/wiki'
|
gem 'foodsoft_wiki', path: 'plugins/wiki'
|
||||||
gem 'foodsoft_messages', path: 'plugins/messages'
|
gem 'foodsoft_messages', path: 'plugins/messages'
|
||||||
|
gem 'foodsoft_documents', path: 'plugins/documents'
|
||||||
gem 'foodsoft_discourse', path: 'plugins/discourse'
|
gem 'foodsoft_discourse', path: 'plugins/discourse'
|
||||||
|
|
||||||
# plugins not enabled by default
|
# plugins not enabled by default
|
||||||
#gem 'foodsoft_current_orders', path: 'plugins/current_orders'
|
#gem 'foodsoft_current_orders', path: 'plugins/current_orders'
|
||||||
#gem 'foodsoft_uservoice', path: 'plugins/uservoice'
|
#gem 'foodsoft_uservoice', path: 'plugins/uservoice'
|
||||||
#gem 'foodsoft_documents', path: 'plugins/documents'
|
|
||||||
|
|
||||||
|
|
||||||
group :development do
|
group :development do
|
||||||
|
|
|
@ -18,6 +18,14 @@ PATH
|
||||||
deface (~> 1.0)
|
deface (~> 1.0)
|
||||||
rails
|
rails
|
||||||
|
|
||||||
|
PATH
|
||||||
|
remote: plugins/documents
|
||||||
|
specs:
|
||||||
|
foodsoft_documents (0.0.1)
|
||||||
|
deface (~> 1.0)
|
||||||
|
rails
|
||||||
|
ruby-filemagic
|
||||||
|
|
||||||
PATH
|
PATH
|
||||||
remote: plugins/messages
|
remote: plugins/messages
|
||||||
specs:
|
specs:
|
||||||
|
@ -513,6 +521,7 @@ DEPENDENCIES
|
||||||
factory_girl_rails
|
factory_girl_rails
|
||||||
faker
|
faker
|
||||||
foodsoft_discourse!
|
foodsoft_discourse!
|
||||||
|
foodsoft_documents!
|
||||||
foodsoft_messages!
|
foodsoft_messages!
|
||||||
foodsoft_wiki!
|
foodsoft_wiki!
|
||||||
gaffe
|
gaffe
|
||||||
|
|
|
@ -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
|
|
@ -76,6 +76,15 @@ ActiveRecord::Schema.define(version: 20171001000000) do
|
||||||
|
|
||||||
add_index "deliveries", ["supplier_id"], name: "index_deliveries_on_supplier_id", using: :btree
|
add_index "deliveries", ["supplier_id"], name: "index_deliveries_on_supplier_id", using: :btree
|
||||||
|
|
||||||
|
create_table "documents", force: :cascade do |t|
|
||||||
|
t.string "name"
|
||||||
|
t.string "mime"
|
||||||
|
t.binary "data"
|
||||||
|
t.integer "created_by_user_id"
|
||||||
|
t.datetime "created_at"
|
||||||
|
t.datetime "updated_at"
|
||||||
|
end
|
||||||
|
|
||||||
create_table "financial_transactions", force: :cascade do |t|
|
create_table "financial_transactions", force: :cascade do |t|
|
||||||
t.integer "ordergroup_id", limit: 4, default: 0, null: false
|
t.integer "ordergroup_id", limit: 4, default: 0, null: false
|
||||||
t.decimal "amount", precision: 8, scale: 2, default: 0, null: false
|
t.decimal "amount", precision: 8, scale: 2, default: 0, null: false
|
||||||
|
|
Loading…
Reference in a new issue