class CreateWhitelabelSystemExtensions

typed: true

Public Instance Methods

change() click to toggle source
# File server/redux-os/db/migrate/20190921101209_create_whitelabel_system_extensions.rb, line 3
def change
  create_table :whitelabel_system_extensions do |t|
    t.text :rfc
    t.references :comment, null: false, foreign_key: true

    t.timestamps
  end
end