Add slug string column to Budget, Budget::Heading and Budget::Group

Why:

* We're still using id's on routes and other parts of the app, using slugs are more friendly and nice

How:

* Just a migration with a slug column with string type
This commit is contained in:
Bertocq
2017-07-04 12:55:36 +02:00
parent 9f38192e13
commit eb9d5b9b84
2 changed files with 11 additions and 1 deletions

View File

@@ -0,0 +1,7 @@
class AddSlugsToBudgetHeadingGroup < ActiveRecord::Migration
def change
add_column :budgets, :slug, :string
add_column :budget_groups, :slug, :string
add_column :budget_headings, :slug, :string
end
end

View File

@@ -11,7 +11,7 @@
# #
# 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.define(version: 20170703120055) do ActiveRecord::Schema.define(version: 20170704105112) 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"
@@ -103,6 +103,7 @@ ActiveRecord::Schema.define(version: 20170703120055) do
create_table "budget_groups", force: :cascade do |t| create_table "budget_groups", force: :cascade do |t|
t.integer "budget_id" t.integer "budget_id"
t.string "name", limit: 50 t.string "name", limit: 50
t.string "slug"
end end
add_index "budget_groups", ["budget_id"], name: "index_budget_groups_on_budget_id", using: :btree add_index "budget_groups", ["budget_id"], name: "index_budget_groups_on_budget_id", using: :btree
@@ -112,6 +113,7 @@ ActiveRecord::Schema.define(version: 20170703120055) do
t.string "name", limit: 50 t.string "name", limit: 50
t.integer "price", limit: 8 t.integer "price", limit: 8
t.integer "population" t.integer "population"
t.string "slug"
end end
add_index "budget_headings", ["group_id"], name: "index_budget_headings_on_group_id", using: :btree add_index "budget_headings", ["group_id"], name: "index_budget_headings_on_group_id", using: :btree
@@ -196,6 +198,7 @@ ActiveRecord::Schema.define(version: 20170703120055) do
t.text "description_balloting" t.text "description_balloting"
t.text "description_reviewing_ballots" t.text "description_reviewing_ballots"
t.text "description_finished" t.text "description_finished"
t.string "slug"
end end
create_table "campaigns", force: :cascade do |t| create_table "campaigns", force: :cascade do |t|