Sha256: f994854ad08de20d4ced316c9996a99f8c585e835542c1015a40f324611b102e

Contents?: true

Size: 237 Bytes

Versions: 5

Compression:

Stored size: 237 Bytes

Contents

class CreateItems < ActiveRecord::Migration
  def self.up
    create_table :items do |t|
      t.string :label, :null => false
      t.string :description
      t.timestamps
    end
  end

  def self.down
    drop_table :items
  end
end

Version data entries

5 entries across 5 versions & 2 rubygems

Version Path
oembed_provider_engine-0.2.0 test/dummy/db/migrate/20110212010602_create_items.rb
oembed_provider_engine-0.1.0 test/dummy/db/migrate/20110212010602_create_items.rb
oembed_provider_engine-0.0.1 test/dummy/db/migrate/20110212010602_create_items.rb
oembed_provider-0.1.1 test/full_2_3_5_app_with_tests/db/migrate/20110212010602_create_items.rb
oembed_provider-0.1.0 test/full_2_3_5_app_with_tests/db/migrate/20110212010602_create_items.rb