mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 09:17:30 +08:00
11 lines
281 B
Ruby
11 lines
281 B
Ruby
|
class CreateJavascriptCaches < ActiveRecord::Migration[5.2]
|
||
|
def change
|
||
|
create_table :javascript_caches do |t|
|
||
|
t.references :theme_field, null: false
|
||
|
t.string :digest, null: true, index: true
|
||
|
t.text :content, null: false
|
||
|
t.timestamps
|
||
|
end
|
||
|
end
|
||
|
end
|