mirror of
https://github.com/discourse/discourse.git
synced 2024-11-30 01:24:48 +08:00
12 lines
242 B
Ruby
12 lines
242 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
class CreateSidebarUrl < ActiveRecord::Migration[7.0]
|
||
|
def change
|
||
|
create_table :sidebar_urls do |t|
|
||
|
t.string :name, null: false
|
||
|
t.string :value, null: false
|
||
|
t.timestamps
|
||
|
end
|
||
|
end
|
||
|
end
|