Sha256: b8354fe0af77ba922d98bc8501a26e02e35ed4d3639352f81d9b976905a04e8f

Contents?: true

Size: 194 Bytes

Versions: 3

Compression:

Stored size: 194 Bytes

Contents

class CreateVideos < ActiveRecord::Migration
  def self.up
    create_table :videos do |t|
      t.string :name, :null => false
    end
  end
  
  def self.down
    drop_table :videos
  end
end

Version data entries

3 entries across 3 versions & 2 rubygems

Version Path
pluginaweek-has_ratings-0.3.0 test/app_root/db/migrate/002_create_videos.rb
has_ratings-0.3.1 test/app_root/db/migrate/002_create_videos.rb
has_ratings-0.3.0 test/app_root/db/migrate/002_create_videos.rb