Sha256: 39ade52ceb4c5e7da04052084557bb7ab03e593f7abbd3562b9a836615bb5a77
Contents?: true
Size: 225 Bytes
Versions: 21
Compression:
Stored size: 225 Bytes
Contents
class CreateArticles < ActiveRecord::Migration def self.up create_table :articles do |t| t.string :title t.text :content t.timestamps end end def self.down drop_table :articles end end
Version data entries
21 entries across 21 versions & 1 rubygems
Version | Path |
---|---|
quo_vadis-1.0.0 | test/dummy/db/migrate/20110124131535_create_articles.rb |