test/dummy/db/schema.rb in attached-1.0.4 vs test/dummy/db/schema.rb in attached-1.0.5
- old
+ new
@@ -9,26 +9,26 @@
# 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 => 20101223191846) do
+ActiveRecord::Schema.define(version: 20101223191846) do
- create_table "audios", :force => true do |t|
+ create_table "audios", force: true do |t|
t.string "name"
t.string "file_identifier"
t.string "file_extension"
t.integer "file_size"
- t.datetime "created_at", :null => false
- t.datetime "updated_at", :null => false
+ t.datetime "created_at", null: false
+ t.datetime "updated_at", null: false
end
- create_table "images", :force => true do |t|
+ create_table "images", force: true do |t|
t.string "name"
t.string "file_identifier"
t.string "file_extension"
t.integer "file_size"
- t.datetime "created_at", :null => false
- t.datetime "updated_at", :null => false
+ t.datetime "created_at", null: false
+ t.datetime "updated_at", null: false
end
end