Sha256: 6a6a3f3cef3b9c5c8f5b1a9c38531acfc99ee4c7fff0111513278dc9e018557f

Contents?: true

Size: 301 Bytes

Versions: 8

Compression:

Stored size: 301 Bytes

Contents

# frozen_string_literal: true
require 'active_record/migration'

class CreateConfig < ActiveRecord::Migration[5.0]
  def change
    create_table :config do |t|
      t.text :refresh_token
      t.text :junk_folder_id
      t.text :report_folder_id
      t.text :spamcop_report_email
    end
  end
end

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
osa-0.2.3 lib/osa/migrations/00003_create_config.rb
osa-0.2.2 lib/osa/migrations/00003_create_config.rb
osa-0.2.1 lib/osa/migrations/00003_create_config.rb
osa-0.2.0 lib/osa/migrations/00003_create_config.rb
osa-0.1.3 lib/osa/migrations/00003_create_config.rb
osa-0.1.2 lib/osa/migrations/00003_create_config.rb
osa-0.1.1 lib/osa/migrations/00003_create_config.rb
osa-0.1.0 lib/osa/migrations/00003_create_config.rb