mirror of
https://github.com/discourse/discourse.git
synced 2026-07-29 15:54:48 -05:00
FEATURE: move stylesheet cache out of the uploads directory
This commit is contained in:
@@ -0,0 +1,12 @@
|
||||
class AddStylesheetCache < ActiveRecord::Migration
|
||||
def change
|
||||
create_table :stylesheet_cache do |t|
|
||||
t.string :target, null: false
|
||||
t.string :digest, null: false
|
||||
t.text :content, null: false
|
||||
t.timestamps
|
||||
end
|
||||
|
||||
add_index :stylesheet_cache, [:target, :digest], unique: true
|
||||
end
|
||||
end
|
||||
Reference in New Issue
Block a user