test_app/db/schema.rb in interpret-0.1.3 vs test_app/db/schema.rb in interpret-0.1.4
- old
+ new
@@ -8,16 +8,23 @@
# from scratch. The latter is a flawed and unsustainable approach (the more migrations
# you'll amass, the slower it'll run and the greater likelihood for issues).
#
# It's strongly recommended to check this file into your version control system.
-ActiveRecord::Schema.define(:version => 20110209185258) do
+ActiveRecord::Schema.define(:version => 20110219173536) do
create_table "translations", :force => true do |t|
t.string "locale"
t.string "key"
t.text "value"
t.text "interpolations"
t.boolean "is_proc", :default => false
+ t.boolean "protected", :default => false
+ end
+
+ create_table "users", :force => true do |t|
+ t.boolean "admin", :default => false, :null => false
+ t.datetime "created_at"
+ t.datetime "updated_at"
end
end