Sha256: dea08f4447447618b7e17124ffc38a1bb6cc34839c5288f7942fab44efbfb8ee

Contents?: true

Size: 787 Bytes

Versions: 2

Compression:

Stored size: 787 Bytes

Contents

# This migration comes from property_web_scraper (originally 20170628160331)
class CreatePropertyWebScraperImportHosts < ActiveRecord::Migration[5.0]
  def change
    create_table :property_web_scraper_import_hosts do |t|
      t.integer  :flags, default: 0, null: false
      t.string :scraper_name
      t.string :host
      t.boolean :is_https
      t.json :details, default: {}
      t.string :slug
      t.text :example_urls, array: true, default: []
      t.text :invalid_urls, array: true, default: []
      t.datetime :last_retrieval_at
      t.string :valid_url_regex
      t.string :pause_between_calls, default: "5.seconds"
      t.string :stale_age, default: "1.day"
      t.timestamps
    end

    add_index :property_web_scraper_import_hosts, :host, unique: true
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
pwb-1.4.0 spec/dummy/db/migrate/20171201161323_create_property_web_scraper_import_hosts.property_web_scraper.rb
pwb-1.3.0 spec/dummy/db/migrate/20171201161323_create_property_web_scraper_import_hosts.property_web_scraper.rb