From ece62b9eb3e2f3995715c32608f1de91d98a22be Mon Sep 17 00:00:00 2001 From: Star Rauchenberger Date: Wed, 29 Nov 2023 23:20:31 -0500 Subject: Rails engine no longer needed --- .../20221210141051_create_lingo_scores.lingo.rb | 13 ------------ .../20221210174732_widen_user_id_field.lingo.rb | 6 ------ rails/test/dummy/db/schema.rb | 23 ---------------------- 3 files changed, 42 deletions(-) delete mode 100644 rails/test/dummy/db/migrate/20221210141051_create_lingo_scores.lingo.rb delete mode 100644 rails/test/dummy/db/migrate/20221210174732_widen_user_id_field.lingo.rb delete mode 100644 rails/test/dummy/db/schema.rb (limited to 'rails/test/dummy/db') diff --git a/rails/test/dummy/db/migrate/20221210141051_create_lingo_scores.lingo.rb b/rails/test/dummy/db/migrate/20221210141051_create_lingo_scores.lingo.rb deleted file mode 100644 index f56790f..0000000 --- a/rails/test/dummy/db/migrate/20221210141051_create_lingo_scores.lingo.rb +++ /dev/null @@ -1,13 +0,0 @@ -# This migration comes from lingo (originally 20221210011146) -class CreateLingoScores < ActiveRecord::Migration[7.0] - def change - create_table :lingo_scores do |t| - t.integer :user_id - t.string :username - t.string :avatar_url - t.integer :score - - t.timestamps - end - end -end diff --git a/rails/test/dummy/db/migrate/20221210174732_widen_user_id_field.lingo.rb b/rails/test/dummy/db/migrate/20221210174732_widen_user_id_field.lingo.rb deleted file mode 100644 index 7ccb934..0000000 --- a/rails/test/dummy/db/migrate/20221210174732_widen_user_id_field.lingo.rb +++ /dev/null @@ -1,6 +0,0 @@ -# This migration comes from lingo (originally 20221210174554) -class WidenUserIdField < ActiveRecord::Migration[7.0] - def change - change_column :lingo_scores, :user_id, :integer, limit: 8 - end -end diff --git a/rails/test/dummy/db/schema.rb b/rails/test/dummy/db/schema.rb deleted file mode 100644 index d59efc3..0000000 --- a/rails/test/dummy/db/schema.rb +++ /dev/null @@ -1,23 +0,0 @@ -# This file is auto-generated from the current state of the database. Instead -# of editing this file, please use the migrations feature of Active Record to -# incrementally modify your database, and then regenerate this schema definition. -# -# This file is the source Rails uses to define your schema when running `bin/rails -# db:schema:load`. When creating a new database, `bin/rails db:schema:load` tends to -# be faster and is potentially less error prone than running all of your -# migrations from scratch. Old migrations may fail to apply correctly if those -# migrations use external dependencies or application code. -# -# It's strongly recommended that you check this file into your version control system. - -ActiveRecord::Schema[7.0].define(version: 2022_12_10_174732) do - create_table "lingo_scores", force: :cascade do |t| - t.integer "user_id", limit: 8 - t.string "username" - t.string "avatar_url" - t.integer "score" - t.datetime "created_at", null: false - t.datetime "updated_at", null: false - end - -end -- cgit 1.4.1