mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 07:18:06 +08:00
13 lines
302 B
Ruby
13 lines
302 B
Ruby
|
class CreateOneboxRenders < ActiveRecord::Migration
|
||
|
def change
|
||
|
create_table :onebox_renders do |t|
|
||
|
t.string :url, null: false
|
||
|
t.text :cooked, null: false
|
||
|
t.datetime :expires_at, null: false
|
||
|
t.timestamps
|
||
|
end
|
||
|
|
||
|
add_index :onebox_renders, :url, unique: true
|
||
|
end
|
||
|
end
|