Sha256: 1fb7ffdb813d7218a865fe43eb1ef77a7a9dad802e45331688c461d67edc0b0f
Contents?: true
Size: 275 Bytes
Versions: 51
Compression:
Stored size: 275 Bytes
Contents
class CreatePosts < ActiveRecord::Migration def self.up create_table :posts, :force => true do |t| t.column :name, :string t.column :reply_counter, :integer t.column :posted_at, :datetime end end def self.down drop_table :posts end end
Version data entries
51 entries across 51 versions & 9 rubygems