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
2023-01-09 11:59:41 +00:00

15 lines
364 B
Ruby

# frozen_string_literal: true
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, %i[target digest], unique: true
end
end