]> git.openstreetmap.org Git - rails.git/blob - db/migrate/012_add_admin_flag.rb
Prepare for Rails 2.1+, as we will no longer be able to use a symbol in the set_fixtu...
[rails.git] / db / migrate / 012_add_admin_flag.rb
1 class AddAdminFlag < ActiveRecord::Migration
2   def self.up
3     add_column "users", "administrator", :boolean, :default => false, :null => false
4   end
5
6   def self.down
7     remove_column "users", "administrator"
8   end
9 end