discourse/db/migrate/20120712150500_create_categ...

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

30 lines
977 B
Ruby
Raw Normal View History

# frozen_string_literal: true
class CreateCategories < ActiveRecord::Migration[4.2]
2013-02-05 14:16:51 -05:00
def up
create_table :categories do |t|
t.string :name, limit: 50, null: false
2018-08-24 14:18:14 -04:00
t.string :color, limit: 6, null: false, default: "0088CC"
2013-02-05 14:16:51 -05:00
t.integer :forum_thread_id, null: true
t.integer :top1_forum_thread_id, null: true
t.integer :top2_forum_thread_id, null: true
t.integer :top1_user_id, null: true
t.integer :top2_user_id, null: true
2013-02-25 11:42:20 -05:00
t.integer :forum_thread_count, null: false, default: 0
2017-08-07 11:48:36 -04:00
t.timestamps null: false
2013-02-05 14:16:51 -05:00
end
add_index :categories, :name, unique: true
add_index :categories, :forum_thread_count
execute "INSERT INTO categories (name, forum_thread_count, created_at, updated_At)
SELECT tag, count(*), CURRENT_TIMESTAMP, CURRENT_TIMESTAMP from forum_threads
WHERE tag IS NOT NULL AND tag <> 'null'
GROUP BY tag"
end
def down
2013-02-25 11:42:20 -05:00
drop_table :categories
2013-02-05 14:16:51 -05:00
end
end