Sha256: f829f2cee4a3c73de4936bde634fe8afa5111d161bb3300bab17896ac1a5c4a2

Contents?: true

Size: 202 Bytes

Versions: 13

Compression:

Stored size: 202 Bytes

Contents

class CreateProjects < ActiveRecord::Migration
  def self.up
    create_table :projects do |t|
      t.string  :name
      t.timestamps
    end
  end

  def self.down
    drop_table :projects
  end
end

Version data entries

13 entries across 13 versions & 1 rubygems

Version Path
cantango-config-0.2.1 spec/migrations/001_create_projects.rb
cantango-config-0.2.0 spec/migrations/001_create_projects.rb
cantango-config-0.1.9.2 spec/migrations/001_create_projects.rb
cantango-config-0.1.8.1 spec/migrations/001_create_projects.rb
cantango-config-0.1.8 spec/migrations/001_create_projects.rb
cantango-config-0.1.7 spec/migrations/001_create_projects.rb
cantango-config-0.1.6 spec/migrations/001_create_projects.rb
cantango-config-0.1.5 spec/migrations/001_create_projects.rb
cantango-config-0.1.4 spec/migrations/001_create_projects.rb
cantango-config-0.1.3 spec/migrations/001_create_projects.rb
cantango-config-0.1.2 spec/migrations/001_create_projects.rb
cantango-config-0.1.1 spec/migrations/001_create_projects.rb
cantango-config-0.1.0 spec/migrations/001_create_projects.rb