mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 23:54:16 +08:00
13 lines
317 B
Ruby
13 lines
317 B
Ruby
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
|