mirror of
https://github.com/internetee/registry.git
synced 2025-08-12 20:49:36 +02:00
parent
bf303e2059
commit
4b287a3e75
2 changed files with 9 additions and 1 deletions
5
db/migrate/20171121233843_add_registrar_language.rb
Normal file
5
db/migrate/20171121233843_add_registrar_language.rb
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
class AddRegistrarLanguage < ActiveRecord::Migration
|
||||||
|
def change
|
||||||
|
add_column :registrars, :language, :string
|
||||||
|
end
|
||||||
|
end
|
|
@ -2477,7 +2477,8 @@ CREATE TABLE registrars (
|
||||||
vat boolean,
|
vat boolean,
|
||||||
legacy_id integer,
|
legacy_id integer,
|
||||||
reference_no character varying,
|
reference_no character varying,
|
||||||
test_registrar boolean DEFAULT false
|
test_registrar boolean DEFAULT false,
|
||||||
|
language character varying
|
||||||
);
|
);
|
||||||
|
|
||||||
|
|
||||||
|
@ -5057,3 +5058,5 @@ INSERT INTO schema_migrations (version) VALUES ('20171025113808');
|
||||||
|
|
||||||
INSERT INTO schema_migrations (version) VALUES ('20171025153841');
|
INSERT INTO schema_migrations (version) VALUES ('20171025153841');
|
||||||
|
|
||||||
|
INSERT INTO schema_migrations (version) VALUES ('20171121233843');
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue