discourse/db/migrate/20150505044154_add_stylesheet_cache.rb

13 lines
329 B
Ruby
Raw Normal View History

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
2017-08-07 23:48:36 +08:00
t.timestamps null: false
end
add_index :stylesheet_cache, [:target, :digest], unique: true
end
end