mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 07:50:51 +08:00
11 lines
217 B
Ruby
11 lines
217 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
class CreateBackupMetadata < ActiveRecord::Migration[5.2]
|
||
|
def change
|
||
|
create_table :backup_metadata do |t|
|
||
|
t.string :name, null: false
|
||
|
t.string :value
|
||
|
end
|
||
|
end
|
||
|
end
|