Skip to content

Instantly share code, notes, and snippets.

@oleander
Created April 10, 2010 23:25
Show Gist options
  • Save oleander/362364 to your computer and use it in GitHub Desktop.
Save oleander/362364 to your computer and use it in GitHub Desktop.
class CreateMovies < ActiveRecord::Migration
def self.up
create_table :movies do |t|
t.integer :id
t.string :title
t.string :imdb
t.integer :grade
t.integer :year
t.integer :length
t.string :url
t.string :img
t.timestamps
end
end
def self.down
drop_table :movies
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment