File tree Expand file tree Collapse file tree 4 files changed +11
-5
lines changed Expand file tree Collapse file tree 4 files changed +11
-5
lines changed Original file line number Diff line number Diff line change 44# This command will automatically be run when you run "rails" with Rails gems
55# installed from the root of your application.
66
7- ENV [ 'RAILS_ENV' ] ||= 'test'
7+ # ENV['RAILS_ENV'] ||= 'test'
88
99ENGINE_ROOT = File . expand_path ( '..' , __dir__ )
1010ENGINE_PATH = File . expand_path ( '../lib/activeadmin/dynamic_fields/engine' , __dir__ )
Original file line number Diff line number Diff line change 1616//
1717// .status_tag { background: #6090DB; }
1818
19+ form fieldset > ol > li .boolean label { width : 100% ; }
20+
1921.red { color : #a00 ; }
Original file line number Diff line number Diff line change @@ -6,3 +6,7 @@ default: &default
66test :
77 << : *default
88 database : db/test.sqlite3
9+
10+ development :
11+ << : *default
12+ database : db/dev.sqlite3
Original file line number Diff line number Diff line change 22# of editing this file, please use the migrations feature of Active Record to
33# incrementally modify your database, and then regenerate this schema definition.
44#
5- # This file is the source Rails uses to define your schema when running `rails
6- # db:schema:load`. When creating a new database, `rails db:schema:load` tends to
5+ # This file is the source Rails uses to define your schema when running `bin/ rails
6+ # db:schema:load`. When creating a new database, `bin/ rails db:schema:load` tends to
77# be faster and is potentially less error prone than running all of your
88# migrations from scratch. Old migrations may fail to apply correctly if those
99# migrations use external dependencies or application code.
1616 t . string "namespace"
1717 t . text "body"
1818 t . string "resource_type"
19- t . integer "resource_id"
19+ t . bigint "resource_id"
2020 t . string "author_type"
21- t . integer "author_id"
21+ t . bigint "author_id"
2222 t . datetime "created_at" , precision : 6 , null : false
2323 t . datetime "updated_at" , precision : 6 , null : false
2424 t . index [ "author_type" , "author_id" ] , name : "index_active_admin_comments_on_author_type_and_author_id"
You can’t perform that action at this time.
0 commit comments