Add support for remote OVH cloud storage
This commit is contained in:
parent
b15c2bbb2b
commit
833d7790c2
53 changed files with 243518 additions and 126 deletions
|
@ -0,0 +1,5 @@
|
|||
class AddOriginalFilenameToPiecesJustificatives < ActiveRecord::Migration
|
||||
def change
|
||||
add_column :pieces_justificatives, :original_filename, :string
|
||||
end
|
||||
end
|
|
@ -0,0 +1,5 @@
|
|||
class AddOriginalFilenameToCerfas < ActiveRecord::Migration
|
||||
def change
|
||||
add_column :cerfas, :original_filename, :string
|
||||
end
|
||||
end
|
|
@ -0,0 +1,5 @@
|
|||
class AddContentSecureTokenToCerfas < ActiveRecord::Migration
|
||||
def change
|
||||
add_column :cerfas, :content_secure_token, :string
|
||||
end
|
||||
end
|
|
@ -0,0 +1,5 @@
|
|||
class AddContentSecureTokenToPiecesJustificatives < ActiveRecord::Migration
|
||||
def change
|
||||
add_column :pieces_justificatives, :content_secure_token, :string
|
||||
end
|
||||
end
|
|
@ -0,0 +1,5 @@
|
|||
class AddLogoSecureTokenToProcedures < ActiveRecord::Migration
|
||||
def change
|
||||
add_column :procedures, :logo_secure_token, :string
|
||||
end
|
||||
end
|
|
@ -11,7 +11,7 @@
|
|||
#
|
||||
# It's strongly recommended that you check this file into your version control system.
|
||||
|
||||
ActiveRecord::Schema.define(version: 20160419142017) do
|
||||
ActiveRecord::Schema.define(version: 20160513093425) do
|
||||
|
||||
# These are extensions that must be enabled in order to support this database
|
||||
enable_extension "plpgsql"
|
||||
|
@ -72,6 +72,8 @@ ActiveRecord::Schema.define(version: 20160419142017) do
|
|||
t.integer "dossier_id"
|
||||
t.datetime "created_at"
|
||||
t.integer "user_id"
|
||||
t.string "original_filename"
|
||||
t.string "content_secure_token"
|
||||
end
|
||||
|
||||
add_index "cerfas", ["dossier_id"], name: "index_cerfas_on_dossier_id", using: :btree
|
||||
|
@ -203,6 +205,8 @@ ActiveRecord::Schema.define(version: 20160419142017) do
|
|||
t.integer "type_de_piece_justificative_id"
|
||||
t.datetime "created_at"
|
||||
t.integer "user_id"
|
||||
t.string "original_filename"
|
||||
t.string "content_secure_token"
|
||||
end
|
||||
|
||||
add_index "pieces_justificatives", ["type_de_piece_justificative_id"], name: "index_pieces_justificatives_on_type_de_piece_justificative_id", using: :btree
|
||||
|
@ -221,6 +225,7 @@ ActiveRecord::Schema.define(version: 20160419142017) do
|
|||
t.boolean "euro_flag", default: false
|
||||
t.string "logo"
|
||||
t.boolean "cerfa_flag", default: false
|
||||
t.string "logo_secure_token"
|
||||
end
|
||||
|
||||
create_table "quartier_prioritaires", force: :cascade do |t|
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue