This repository has been archived on 2023-03-18. You can view files and clone it, but cannot push or open issues or pull requests.
osr-discourse-src/db/migrate/20150505044154_add_stylesheet_cache.rb

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