Class: CreateCommunities
- Inherits:
-
ActiveRecord::Migration
- Object
- ActiveRecord::Migration
- CreateCommunities
- Defined in:
- lib/db/migrate/004_create_communities.rb
Class Method Summary collapse
Class Method Details
.down ⇒ Object
9 10 11 |
# File 'lib/db/migrate/004_create_communities.rb', line 9 def self.down drop_table :communities end |
.up ⇒ Object
2 3 4 5 6 7 |
# File 'lib/db/migrate/004_create_communities.rb', line 2 def self.up create_table :communities do |t| t.string :community_id, :default => '', :null => false t.text :title end end |