mirror of
https://github.com/internetee/registry.git
synced 2025-06-30 08:13:34 +02:00
parent
8ad924cf59
commit
31f39d92b2
2 changed files with 7 additions and 1 deletions
5
db/migrate/20170506144743_remove_price_desc.rb
Normal file
5
db/migrate/20170506144743_remove_price_desc.rb
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
class RemovePriceDesc < ActiveRecord::Migration
|
||||||
|
def change
|
||||||
|
remove_column :prices, :desc, :string
|
||||||
|
end
|
||||||
|
end
|
|
@ -2532,7 +2532,6 @@ ALTER SEQUENCE people_id_seq OWNED BY people.id;
|
||||||
|
|
||||||
CREATE TABLE prices (
|
CREATE TABLE prices (
|
||||||
id integer NOT NULL,
|
id integer NOT NULL,
|
||||||
"desc" character varying,
|
|
||||||
price_cents integer NOT NULL,
|
price_cents integer NOT NULL,
|
||||||
valid_from timestamp without time zone,
|
valid_from timestamp without time zone,
|
||||||
valid_to timestamp without time zone,
|
valid_to timestamp without time zone,
|
||||||
|
@ -5257,3 +5256,5 @@ INSERT INTO schema_migrations (version) VALUES ('20170423225333');
|
||||||
|
|
||||||
INSERT INTO schema_migrations (version) VALUES ('20170424115801');
|
INSERT INTO schema_migrations (version) VALUES ('20170424115801');
|
||||||
|
|
||||||
|
INSERT INTO schema_migrations (version) VALUES ('20170506144743');
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue