Skip to content

Instantly share code, notes, and snippets.

@ka8725
Created September 12, 2012 13:24
Show Gist options
  • Select an option

  • Save ka8725/3706569 to your computer and use it in GitHub Desktop.

Select an option

Save ka8725/3706569 to your computer and use it in GitHub Desktop.
create_table "groups", :force => true do |t|
t.string "name"
t.text "description"
t.string "access_type"
t.integer "creator_id"
t.datetime "created_at", :null => false
t.datetime "updated_at", :null => false
t.string "membership_approval", :default => "all", :null => false
t.string "posting_permission", :default => "all", :null => false
t.boolean "fan_zone", :default => false
t.boolean "deleted", :default => false, :null => false
t.string "photo_file"
t.string "inviting_permission"
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment