@ -10,7 +10,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 : 201 70425202925 ) do
ActiveRecord :: Schema . define ( version : 201 80428000000 ) 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 "
@ -54,13 +54,23 @@ ActiveRecord::Schema.define(version: 20170425202925) do
t . index [ " username " , " domain " ] , name : " index_accounts_on_username_and_domain " , unique : true , using : :btree
t . index [ " username " , " domain " ] , name : " index_accounts_on_username_and_domain " , unique : true , using : :btree
end
end
create_table " block_mutes " , force : :cascade , id : false do | t |
t . integer " account_id " , null : false
t . integer " target_account_id " , null : false
t . boolean " block " , null : false
t . datetime " created_at " , null : false
t . datetime " updated_at " , null : false
end
create_table " blocks " , force : :cascade do | t |
create_table " blocks " , force : :cascade do | t |
t . integer " account_id " , null : false
t . integer " account_id " , null : false
t . integer " target_account_id " , null : false
t . integer " target_account_id " , null : false
t . boolean " block " , null : false
t . datetime " created_at " , null : false
t . datetime " created_at " , null : false
t . datetime " updated_at " , null : false
t . datetime " updated_at " , null : false
t . index [ " account_id " , " target_account_id " ] , name : " index_blocks_on_account_id_and_target_account_id " , unique : true , using : :btree
t . index [ " account_id " , " target_account_id " ] , name : " index_blocks_on_account_id_and_target_account_id " , unique : true , using : :btree
end
end
execute " ALTER TABLE blocks ADD CONSTRAINT check_blocks_on_block CHECK(block = TRUE), INHERIT block_mutes "
create_table " domain_blocks " , force : :cascade do | t |
create_table " domain_blocks " , force : :cascade do | t |
t . string " domain " , default : " " , null : false
t . string " domain " , default : " " , null : false
@ -137,10 +147,12 @@ ActiveRecord::Schema.define(version: 20170425202925) do
create_table " mutes " , force : :cascade do | t |
create_table " mutes " , force : :cascade do | t |
t . integer " account_id " , null : false
t . integer " account_id " , null : false
t . integer " target_account_id " , null : false
t . integer " target_account_id " , null : false
t . boolean " block " , null : false
t . datetime " created_at " , null : false
t . datetime " created_at " , null : false
t . datetime " updated_at " , null : false
t . datetime " updated_at " , null : false
t . index [ " account_id " , " target_account_id " ] , name : " index_mutes_on_account_id_and_target_account_id " , unique : true , using : :btree
t . index [ " account_id " , " target_account_id " ] , name : " index_mutes_on_account_id_and_target_account_id " , unique : true , using : :btree
end
end
execute " ALTER TABLE mutes ADD CONSTRAINT check_mutes_on_block CHECK(block = FALSE), INHERIT block_mutes "
create_table " notifications " , force : :cascade do | t |
create_table " notifications " , force : :cascade do | t |
t . integer " account_id "
t . integer " account_id "