Sha256: 4a2742da482f2b6fd84b4d8c7d659d2fed154bb18558afe68fe91d4fcfc2bd64

Contents?: true

Size: 193 Bytes

Versions: 29

Compression:

Stored size: 193 Bytes

Contents

class CreatePosts < ActiveRecord::Migration
  def self.up
    create_table :posts do |t|
      t.string :name

      t.timestamps
    end
  end

  def self.down
    drop_table :posts
  end
end

Version data entries

29 entries across 29 versions & 2 rubygems

Version Path
impressionist-1.4.2 tests/test_app/db/migrate/20110210205028_create_posts.rb
impressionist-1.4.1 test_app/db/migrate/20110210205028_create_posts.rb
impressionist-1.4.0 test_app/db/migrate/20110210205028_create_posts.rb
impressionist-1.3.2 test_app/db/migrate/20110210205028_create_posts.rb
impressionist-1.3.1 test_app/db/migrate/20110210205028_create_posts.rb
impressionist-1.3.0 test_app/db/migrate/20110210205028_create_posts.rb
impressionist-1.2.0 test_app/db/migrate/20110210205028_create_posts.rb
impressionist-1.1.1 test_app/db/migrate/20110210205028_create_posts.rb
impressionist-1.1.0 test_app/db/migrate/20110210205028_create_posts.rb