mirror of
https://github.com/internetee/registry.git
synced 2025-05-16 01:17:18 +02:00
parent
4b287a3e75
commit
1cd4d2854f
2 changed files with 8 additions and 1 deletions
|
@ -0,0 +1,5 @@
|
||||||
|
class ChangeRegistrarLanguageToNotNull < ActiveRecord::Migration
|
||||||
|
def change
|
||||||
|
change_column_null :registrars, :language, false, 'et'
|
||||||
|
end
|
||||||
|
end
|
|
@ -2478,7 +2478,7 @@ CREATE TABLE registrars (
|
||||||
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
|
language character varying NOT NULL
|
||||||
);
|
);
|
||||||
|
|
||||||
|
|
||||||
|
@ -5060,3 +5060,5 @@ INSERT INTO schema_migrations (version) VALUES ('20171025153841');
|
||||||
|
|
||||||
INSERT INTO schema_migrations (version) VALUES ('20171121233843');
|
INSERT INTO schema_migrations (version) VALUES ('20171121233843');
|
||||||
|
|
||||||
|
INSERT INTO schema_migrations (version) VALUES ('20171123035941');
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue