You get problems like: ERROR: permission denied: "RI_ConstraintTrigger_506060" is a system trigger This change is necessary or else nobody will be able to install Diaspora with PostgreSQL.
9 lines
167 B
Ruby
9 lines
167 B
Ruby
class DropStatistics < ActiveRecord::Migration
|
|
def self.up
|
|
execute 'DROP TABLE statistics'
|
|
execute 'DROP TABLE data_points'
|
|
end
|
|
|
|
def self.down
|
|
end
|
|
end
|