mirror of
https://github.com/discourse/discourse.git
synced 2025-09-07 12:02:53 +08:00
12 lines
334 B
Ruby
12 lines
334 B
Ruby
class AddStylesheetCache < ActiveRecord::Migration[4.2]
|
|
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 null: false
|
|
end
|
|
|
|
add_index :stylesheet_cache, [:target, :digest], unique: true
|
|
end
|
|
end
|