Sha256: 341f397d1b090ab05fa9a3ec7e88d853b118a95bc2121f94962eb0c8a335de45

Contents?: true

Size: 802 Bytes

Versions: 17

Compression:

Stored size: 802 Bytes

Contents

class CreateShops < ActiveRecord::Migration
  def change
    create_table :shops do |t|
      t.string :name,                         null: false
      t.string :author_name,                  null: true
      t.string :description,                  null: true
      t.string :theme,                        null: false, default: 'simply'
      t.string :time_zone,                    null: false, default: 'UTC'
      t.string :from_email,                   null: false
      t.string :default_creditcard_action,    null: false, default: 'authorize'
      t.string :phone_number
      t.string :twitter_handle
      t.string :facebook_url
      t.string :google_analytics_tracking_id
      t.decimal :tax_percentage, precision: 4, scale: 2, null: false, default: 0

      t.timestamps
    end
  end
end

Version data entries

17 entries across 17 versions & 1 rubygems

Version Path
nimbleshop_core-0.0.10 db/migrate/20111022234951_create_shops.rb
nimbleshop_core-0.0.9 db/migrate/20111022234951_create_shops.rb
nimbleshop_core-0.0.8 db/migrate/20111022234951_create_shops.rb
nimbleshop_core-0.0.7 db/migrate/20111022234951_create_shops.rb
nimbleshop_core-0.0.5 db/migrate/20111022234951_create_shops.rb
nimbleshop_core-0.0.4.beta1 db/migrate/20111022234951_create_shops.rb
nimbleshop_core-0.0.4 db/migrate/20111022234951_create_shops.rb
nimbleshop_core-0.0.3 db/migrate/20111022234951_create_shops.rb
nimbleshop_core-0.0.2 db/migrate/20111022234951_create_shops.rb
nimbleshop_core-0.0.2.beta1 db/migrate/20111022234951_create_shops.rb
nimbleshop_core-0.0.1 db/migrate/20111022234951_create_shops.rb
nimbleshop_core-0.0.1.rc6 db/migrate/20111022234951_create_shops.rb
nimbleshop_core-0.0.1.rc5 db/migrate/20111022234951_create_shops.rb
nimbleshop_core-0.0.1.rc4 db/migrate/20111022234951_create_shops.rb
nimbleshop_core-0.0.1.rc3 db/migrate/20111022234951_create_shops.rb
nimbleshop_core-0.0.1.rc2 db/migrate/20111022234951_create_shops.rb
nimbleshop_core-0.0.1.rc1 db/migrate/20111022234951_create_shops.rb