pvincent 2 months ago
parent
commit
209618be52
  1. 2
      TODO.md
  2. 15
      db/schema.rb

2
TODO.md

@ -1,6 +1,8 @@
TODO TODO
==== ====
* [ ] Ransack + Arel
* [ ] Score.select(Arel.sql('Scores.*, true as mine'))
* [ ] https://github.com/mrwweb/clicky-menus * [ ] https://github.com/mrwweb/clicky-menus
* [ ] Fontawesome 6 * [ ] Fontawesome 6
* [x] importmap * [x] importmap

15
db/schema.rb

@ -10,15 +10,14 @@
# #
# It's strongly recommended that you check this file into your version control system. # It's strongly recommended that you check this file into your version control system.
ActiveRecord::Schema[7.1].define(version: 2024_01_04_070011) do
ActiveRecord::Schema[7.1].define(version: 20_240_104_070_011) do
# These are extensions that must be enabled in order to support this database # These are extensions that must be enabled in order to support this database
enable_extension "plpgsql"
enable_extension 'plpgsql'
create_table "scores", force: :cascade do |t|
t.string "name"
t.integer "grade"
t.datetime "created_at", null: false
t.datetime "updated_at", null: false
create_table 'scores', force: :cascade do |t|
t.string 'name'
t.integer 'grade'
t.datetime 'created_at', null: false
t.datetime 'updated_at', null: false
end end
end end
Loading…
Cancel
Save