Sha256: f5f5363811f26eeb9cd66cabce217077110bb9f54d46fee320cc1ec4a75bf091

Contents?: true

Size: 379 Bytes

Versions: 6

Compression:

Stored size: 379 Bytes

Contents

class CreateClipsterClips < ActiveRecord::Migration
  def up
    create_table :clipster_clips do |t|
      t.string :hash, :null => false
      t.text :clip, :null => false
      t.string :language, :null => false
      t.string :title, :null => false
      t.boolean :private, :null => false
      t.timestamps
    end
  end

  def down
    drop_table :clipster_clips
  end
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
clipster-0.4.0 db/migrate/20121004010757_create_clipster_clips.rb
clipster-0.2.2 db/migrate/20121004010757_create_clipster_clips.rb
clipster-0.2.0 db/migrate/20121004010757_create_clipster_clips.rb
clipster-0.1.2 db/migrate/20121004010757_create_clipster_clips.rb
clipster-0.1.1 db/migrate/20121004010757_create_clipster_clips.rb
clipster-0.1.0 db/migrate/20121004010757_create_clipster_clips.rb